ToolBar.Orientation Свойство

Определение

Возвращает ориентацию элемента управления ToolBar.

public:
 property System::Windows::Controls::Orientation Orientation { System::Windows::Controls::Orientation get(); };
public System.Windows.Controls.Orientation Orientation { get; }
member this.Orientation : System.Windows.Controls.Orientation
Public ReadOnly Property Orientation As Orientation

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

Orientation

Ориентация панели инструментов. Значение по умолчанию — Horizontal.

Примеры

В следующем примере показано, как определить, является ли вертикальная ToolBar .

if (tb1.Orientation == Orientation.Vertical)
{
    btnText.Content = "This is a vertical toolbar.";
}
If tb1.Orientation = Orientation.Vertical Then
    btnText.Content = "This is a vertical toolbar."
End If

Комментарии

Это свойство получает его значение от родительского ToolBarTrayобъекта.

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

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

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

См. также раздел