ProgressBar.Orientation Свойство

Определение

Получает или задает ориентацию объекта ProgressBar: горизонтальную или вертикальную.

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

Значение свойства

Orientation

Одно из значений перечисления Orientation. Значение по умолчанию — Horizontal.

Примеры

В следующем примере показано ProgressBar , как использовать Orientation свойство для создания горизонтальной полосы.

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)

Комментарии

Сведения о свойстве зависимостей

Поле идентификатора OrientationProperty
Для свойств метаданных задано значение true AffectsMeasure

Применяется к