我正在按照这个简单的示例将图像附加到身体部位:http ://channel9.msdn.com/Series/KinectQuickstart/Skeletal-Tracking-Fundamentals
问题是我的图像不显示。椭圆和我放置在 MainWindow 中的所有其他组件正确显示,但图像不可见。
这是主窗口:
因此,当我启动 Kinect 但没有图像时,椭圆显示良好。这是生成的 XAML 代码:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:WpfViewers="clr-namespace:Microsoft.Samples.Kinect.WpfViewers;assembly=Microsoft.Samples.Kinect.WpfViewers" x:Class="KinectSetupDev.MainWindow"
Title="MainWindow" Height="480" Width="640" Closing="Window_Closing_1" Loaded="Window_Loaded_1">
<Grid>
<Image x:Name="image1" HorizontalAlignment="Left" Height="356" VerticalAlignment="Top" Width="502"/>
<Ellipse x:Name="rightEllipse" Fill="BlueViolet" HorizontalAlignment="Left" Height="45" Margin="122,41,0,0" Stroke="Black" VerticalAlignment="Top" Width="54"/>
<Ellipse x:Name="leftEllipse" Fill="Cornsilk" HorizontalAlignment="Left" Height="42" Margin="30,61,0,0" Stroke="Black" VerticalAlignment="Top" Width="52"/>
<Image x:Name="headImage" Source="smile.png" HorizontalAlignment="Left" Height="52" Margin="43,145,0,0" VerticalAlignment="Top" Width="57"/>
</Grid>
这是某种错误吗?在所有教程中,图像只是放置在 MainWindow 上并通常显示在屏幕上。我有最新的 SDK (v1.7)。有任何想法吗?