我有两张图片,比如png和jpeg,我需要覆盖它们。 在WPF中,它可以通过DrawingGroup完成(在SL中不可用)。我猜它可能会完成 改用WriteableBitmap。你知道怎么做吗?
提前致谢!
干杯
答案 0 :(得分:0)
只需使用Grid
: -
<Grid>
<Image Source="MyPic1.png" VerticalAlignment="Top" HorizontalAlignment="Left" />
<Image Source="MyPic2.jpg" VerticalAlignment="Top" HorizontalAlignment="Left" />
</Grid>