1
以下是應該幫助你理解我的不幸的短片;( 我試圖在圖片控件中顯示特定的位圖幀(Tif頁)但我找不到圖像控制的任何適當的成員。XAML:圖片應該顯示特定的位圖幀
<Image>
<Image.Source>
<BitmapImage
DecodePixelWidth="500"
UriSource="C:\...\MultiPage.tif"
CacheOption="OnLoad"
CreateOptions="PreservePixelFormat"
RenderOptions.BitmapScalingMode="HighQuality"
RenderOptions.EdgeMode="Aliased"
<!--The following line does not work of course but it should show what I mean:-->
BitmapFrameIndex="3"
/>
</Image.Source>
</Image>
是啊,就是這樣......謝謝 – 2014-09-24 09:46:35
@NoelWidmer你可以p也可以將其包裝在派生的BitmapSource中,以使其可用於XAML。 – Clemens 2014-09-24 10:41:18