ColorConvertedBitmap.EndInit Method
.NET Framework 3.0
Signals the end of the ColorConvertedBitmap initialization.
Namespace: System.Windows.Media.Imaging
Assembly: PresentationCore (in presentationcore.dll)
Assembly: PresentationCore (in presentationcore.dll)
| Exception type | Condition |
|---|---|
| The Source, SourceColorContext, or DestinationColorContext properties are a null reference (Nothing in Visual Basic). -or- The EndInit method is called without first calling BeginInit. |
The following example shows how to use the EndInit method in order to change the properties of a ColorConvertedBitmap.
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.