BitmapImage.EndInit Methode

Definition

Signalisiert das Ende der BitmapImage-Initialisierung.

public:
 virtual void EndInit();
public void EndInit ();
abstract member EndInit : unit -> unit
override this.EndInit : unit -> unit
Public Sub EndInit ()

Implementiert

Ausnahmen

Die UriSource-Eigenschaft oder die StreamSource-Eigenschaft ist null.

- oder -

Die EndInit()-Methode wird aufgerufen, ohne zunächst BeginInit() aufzurufen.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie sie mit BitmapImage einer Reihe von Eigenschaften mithilfe der BeginInit Methoden und EndInit initialisiert werden.

// Define a BitmapImage.
Image myImage = new Image();
BitmapImage bi = new BitmapImage();

// Begin initialization.
bi.BeginInit();

// Set properties.
bi.CacheOption = BitmapCacheOption.OnDemand;
bi.CreateOptions = BitmapCreateOptions.DelayCreation;
bi.DecodePixelHeight = 125;
bi.DecodePixelWidth = 125;
bi.Rotation = Rotation.Rotate90;
MessageBox.Show(bi.IsDownloading.ToString());
bi.UriSource = new Uri("smiley.png", UriKind.Relative);

// End initialization.
bi.EndInit();
myImage.Source = bi;
myImage.Stretch = Stretch.None;
myImage.Margin = new Thickness(5);
' Define a BitmapImage.
Dim myImage As New Image()
Dim bi As New BitmapImage()

' Begin initialization.
bi.BeginInit()

' Set properties.
bi.CacheOption = BitmapCacheOption.OnDemand
bi.CreateOptions = BitmapCreateOptions.DelayCreation
bi.DecodePixelHeight = 125
bi.DecodePixelWidth = 125
bi.Rotation = Rotation.Rotate90
MessageBox.Show(bi.IsDownloading.ToString())
bi.UriSource = New Uri("smiley.png", UriKind.Relative)

' End initialization.
bi.EndInit()
myImage.Source = bi
myImage.Stretch = Stretch.None
myImage.Margin = New Thickness(5)

Hinweise

Die Eigenschaftsinitialisierung muss zwischen BeginInit - und EndInit -Aufrufen erfolgen. Nachdem die BitmapImage initialisiert wurde, werden Eigenschaftsänderungen ignoriert.

Gilt für:

Weitere Informationen