KinectV2_人體索引(BodyIndex)_[WPF_vs_WinForm]
在 WPF上運行的測試結果 在 WPF上運行的代碼 視窗介面 MainWindow.xaml <Window x:Class="KinectV2_BodyIndex_exercise.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:KinectV2_BodyIndex_exercise" mc:Ignorable="d" Title="MainWindow" Height="600" Width="1200" Loaded="Window_Loaded" Closing="Window_Closing" > <Grid> <Image x:Name="ImageBodyIndex" Width="512" Height="424"/> </Grid> </Window> 事件運行的代碼 MainWindow.xaml.cs using System; using System.Collections.Generic; using System....