This topic has not yet been rated - Rate this topic

ColorConvertedBitmap.EndInit Method

Signals the end of the ColorConvertedBitmap initialization.

Namespace: System.Windows.Media.Imaging
Assembly: PresentationCore (in presentationcore.dll)

public void EndInit ()
public final void EndInit ()
public final function EndInit ()
You cannot use methods in XAML.
Exception typeCondition

InvalidOperationException

The Source, SourceColorContext, or DestinationColorContext properties are a null reference (Nothing in Visual Basic).

-or-

The EndInit method is called without first calling BeginInit.

Property initialization must be done between BeginInit and EndInit calls. Once the ColorConvertedBitmap has been initialized, property changes are ignored.

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.

.NET Framework

Supported in: 3.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.