Freigeben über


ProgressBar.Orientation Eigenschaft

Definition

Ruft die Ausrichtung einer ProgressBar ab (horizontal oder vertikal) oder legt diese fest.

public:
 property System::Windows::Controls::Orientation Orientation { System::Windows::Controls::Orientation get(); void set(System::Windows::Controls::Orientation value); };
public System.Windows.Controls.Orientation Orientation { get; set; }
member this.Orientation : System.Windows.Controls.Orientation with get, set
Public Property Orientation As Orientation

Eigenschaftswert

Orientation

Einer der Orientation-Werte. Der Standardwert ist Horizontal.

Beispiele

Im folgenden Beispiel wird ProgressBar gezeigt, wie die Orientation Eigenschaft verwendet wird, um eine horizontale Leiste zu erstellen.

ProgressBar progbar = new ProgressBar();
progbar.IsIndeterminate = false;
progbar.Orientation = Orientation.Horizontal;
progbar.Width = 150;
progbar.Height = 15;
Duration duration = new Duration(TimeSpan.FromSeconds(10));
DoubleAnimation doubleanimation = new DoubleAnimation(100.0, duration);
progbar.BeginAnimation(ProgressBar.ValueProperty, doubleanimation);
Dim progbar As New ProgressBar()
progbar.IsIndeterminate = False
progbar.Orientation = Orientation.Horizontal
progbar.Width = 150
progbar.Height = 15
Dim duration As New Duration(TimeSpan.FromSeconds(10))
Dim doubleanimation As New DoubleAnimation(100.0, duration)
progbar.BeginAnimation(ProgressBar.ValueProperty, doubleanimation)

Hinweise

Informationen zur Abhängigkeitseigenschaft

Bezeichnerfeld OrientationProperty
Metadateneigenschaften auf true festgelegt AffectsMeasure

Gilt für