The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
ColorConvertedBitmap.SourceColorContext Property
.NET Framework 3.0
Gets or sets a value that identifies the color profile of the source bitmap.
Namespace: System.Windows.Media.Imaging
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
/** @property */ public ColorContext get_SourceColorContext () /** @property */ public void set_SourceColorContext (ColorContext value)
public function get SourceColorContext () : ColorContext public function set SourceColorContext (value : ColorContext)
For XAML information, see ColorConvertedBitmap Markup Extension.
Property Value
An instance of ColorContext.When you make property changes to a ColorConvertedBitmap, the changes must be done within a BeginInit and EndInit block.
The following example shows how to set the value of the SourceColorContext property.
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();
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.