BitmapImage.CreateOptions Propiedad

Definición

Obtiene o establece la propiedad BitmapCreateOptions de una clase BitmapImage.

public System.Windows.Media.Imaging.BitmapCreateOptions CreateOptions { get; set; }

Valor de propiedad

La enumeración BitmapCreateOptions usada para esta clase BitmapImage. De manera predeterminada, es None.

Ejemplos

En el ejemplo de código siguiente se muestra cómo establecer el CreateOptions de mediante BitmapImage código .

// 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);

Comentarios

Información sobre propiedades de dependencia

Campo identificador CreateOptionsProperty
Propiedades de metadatos establecidas en true Ninguno

Se aplica a

Producto Versiones
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

Consulte también