BitmapImage.CacheOption Proprietà

Definizione

Ottiene o imposta l'oggetto BitmapCacheOption da utilizzare per questa istanza dell'oggetto BitmapImage.

public:
 property System::Windows::Media::Imaging::BitmapCacheOption CacheOption { System::Windows::Media::Imaging::BitmapCacheOption get(); void set(System::Windows::Media::Imaging::BitmapCacheOption value); };
public System.Windows.Media.Imaging.BitmapCacheOption CacheOption { get; set; }
member this.CacheOption : System.Windows.Media.Imaging.BitmapCacheOption with get, set
Public Property CacheOption As BitmapCacheOption

Valore della proprietà

BitmapCacheOption

Oggetto BitmapCacheOption correntemente utilizzato per l'oggetto BitmapImage. Il valore predefinito è Default.

Esempio

Nell'esempio di codice seguente viene illustrato come impostare l'oggetto CacheOption di un BitmapImage usando il codice.

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

Commenti

Impostare su CacheOption BitmapCacheOption.OnLoad se si desidera chiudere un flusso usato per creare .BitmapImage L'opzione cache predefinita OnDemand mantiene l'accesso al flusso finché non è necessaria l'immagine e la pulizia viene gestita dal Garbage Collector.

Informazioni proprietà di dipendenza

Campo Identificatore CacheOptionProperty
Proprietà dei metadati impostate su true Nessuno

Si applica a

Vedi anche