BitmapCacheOption Sabit listesi

Tanım

Bit eşlem görüntüsünün bellek önbelleğinden nasıl yararlanır belirtir.

public enum class BitmapCacheOption
public enum BitmapCacheOption
type BitmapCacheOption = 
Public Enum BitmapCacheOption
Devralma
BitmapCacheOption

Alanlar

Default 0

Görüntünün tamamını belleğe önbelleğe alır. Varsayılan değer budur.

None 2

Bellek deposu oluşturmayın. Görüntüye yönelik tüm istekler doğrudan görüntü dosyası tarafından doldurulur.

OnDemand 0

Yalnızca istenen veriler için bir bellek deposu oluşturur. İlk istek görüntüyü doğrudan yükler; sonraki istekler önbellekten doldurulur.

OnLoad 1

Yükleme zamanında görüntünün tamamını bellekte önbelleğe alır. Görüntü verilerine yönelik tüm istekler bellek deposundan doldurulur.

Örnekler

Aşağıdaki kod örneği, yükleme BitmapImage ve belirtme BitmapCacheOptionişlemini gösterir.

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

Şunlara uygulanır

Ayrıca bkz.