Auf Englisch lesen

Teilen über


Rotation Enumeration

Definition

Gibt die Drehung an, die auf ein Bitmapbild angewendet werden soll.

C#
public enum Rotation
Vererbung
Rotation

Felder

Rotate0 0

Die Bitmap wird nicht gedreht Dies ist der Standardwert.

Rotate180 2

Dreht die Bitmap um 180 Grad im Uhrzeigersinn.

Rotate270 3

Dreht die Bitmap um 270 Grad im Uhrzeigersinn.

Rotate90 1

Dreht die Bitmap um 90 Grad im Uhrzeigersinn.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie eine Drehung auf ein Bitmapbild angewendet wird.

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

Hinweise

Es werden nur 90-Grad-Schritte unterstützt.

Gilt für

Produkt Versionen
.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
Windows Desktop 3.0, 3.1, 5, 6, 7

Siehe auch