WPF图像跳过另一个

时间:2012-04-27 05:57:15

标签: wpf xaml .net

如何使用XAML进行此操作?

http://img851.imageshack.us/img851/8505/85612476.png

这是三张图片,一张是左手,一张是右手,一张是两张。我需要使用不是画布的面板。

1 个答案:

答案 0 :(得分:0)

这样的事情:

<Grid>
    <Image Width="250" Height="500" HorizontalAlignment="Left" />
    <Image Width="250" Height="500" HorizontalAlignment="Right" />
    <Image Width="250" Height="250" HorizontalAlignment="Center" VerticalAlignment="Center" />
</Grid>