不确定这里的问题是什么。如果我执行以下操作:
<Image Width="90" Height="97" Source="<some path>" />
我的图片按预期显示。但我想裁剪它,所以我使用以下代码完全相同的路径。
<Image>
<Image.Source>
<CroppedBitmap Source="<same path>">
<CroppedBitmap.SourceRect>
<Int32Rect X="0" Y="0" Width="100" Height="100" />
</CroppedBitmap.SourceRect>
</CroppedBitmap>
</Image.Source>
</Image>
没有任何表现。谁能告诉我为什么它不起作用?如果这有所不同,我正在使用PNG。
答案 0 :(得分:0)
我有一个类似的问题,有一个gif。在Visual Studio 2012中,图像不会显示在设计视图中,但是当我实际运行应用程序时,裁剪后的图像显示正常。