ToolBar.Orientation Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Identifier field | OrientationProperty |
Metadata properties set to true |
None |
Applies to
See also
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.