ColorConvertedBitmap.DestinationColorContext 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,這個值會識別已轉換之點陣圖的色彩設定檔 (由 ColorContext 類別所定義)。
public:
property System::Windows::Media::ColorContext ^ DestinationColorContext { System::Windows::Media::ColorContext ^ get(); void set(System::Windows::Media::ColorContext ^ value); };
public System.Windows.Media.ColorContext DestinationColorContext { get; set; }
member this.DestinationColorContext : System.Windows.Media.ColorContext with get, set
Public Property DestinationColorContext As ColorContext
屬性值
ColorContext 的執行個體。
範例
下列範例示範如何設定 屬性的值 DestinationColorContext 。
ColorConvertedBitmap myColorConvertedBitmap = new ColorConvertedBitmap();
myColorConvertedBitmap.BeginInit();
myColorConvertedBitmap.SourceColorContext = myBitmapSourceFrame2.ColorContexts[0];
myColorConvertedBitmap.Source = myBitmapSource2;
myColorConvertedBitmap.DestinationFormat = PixelFormats.Pbgra32;
myColorConvertedBitmap.DestinationColorContext = new ColorContext(PixelFormats.Bgra32);
myColorConvertedBitmap.EndInit();
Dim myColorConvertedBitmap As New ColorConvertedBitmap()
myColorConvertedBitmap.BeginInit()
myColorConvertedBitmap.SourceColorContext = myBitmapSourceFrame2.ColorContexts(0)
myColorConvertedBitmap.Source = myBitmapSource2
myColorConvertedBitmap.DestinationFormat = PixelFormats.Pbgra32
myColorConvertedBitmap.DestinationColorContext = New ColorContext(PixelFormats.Bgra32)
myColorConvertedBitmap.EndInit()
備註
當您對 ColorConvertedBitmap 進行屬性變更時,必須在 和 EndInit 區塊內 BeginInit 完成變更。
相依性屬性資訊
識別碼欄位 | DestinationColorContextProperty |
設定為 的中繼資料屬性 true |
無 |