Modifica

Condividi tramite


ToolBar.Orientation Property

Definition

Gets the orientation of the 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

Property Value

The toolbar orientation. The default is Horizontal.

Examples

The following example shows how to determine whether a ToolBar is vertical.

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

Remarks

This property gets its value from the parent ToolBarTray.

Dependency Property Information

Item Value
Identifier field OrientationProperty
Metadata properties set to true None

Applies to

See also