1
我有两个图像,说png和jpeg,我需要覆盖它们。 在WPF中,它可以通过DrawingGroup完成(在SL中不可用)。我想用WriteableBitmap代替它可以完成 。你有什么想法如何做到这一点?使用WriteableBitmap覆盖两个图像
在此先感谢!
干杯
我有两个图像,说png和jpeg,我需要覆盖它们。 在WPF中,它可以通过DrawingGroup完成(在SL中不可用)。我想用WriteableBitmap代替它可以完成 。你有什么想法如何做到这一点?使用WriteableBitmap覆盖两个图像
在此先感谢!
干杯
只需使用一个Grid
代替: -
<Grid>
<Image Source="MyPic1.png" VerticalAlignment="Top" HorizontalAlignment="Left" />
<Image Source="MyPic2.jpg" VerticalAlignment="Top" HorizontalAlignment="Left" />
</Grid>