ToolBarTray.IsLocked Property

Definition

Gets or sets a value that indicates whether a ToolBar can be moved inside a ToolBarTray.

public:
 property bool IsLocked { bool get(); void set(bool value); };
public bool IsLocked { get; set; }
member this.IsLocked : bool with get, set
Public Property IsLocked As Boolean

Property Value

true if the toolbar cannot be moved inside the toolbar tray; otherwise, false. The default is false.

Examples

The following example shows how to create a ToolBarTray that does not allow a ToolBar to move inside it.

<ToolBarTray Background="White" IsLocked="True">

Remarks

This dependency property also has an attached property usage.

XAML Attribute Usage

<object IsLocked="bool"/>  
- or -  
<object ToolBarTray.IsLocked="bool"/>  

Dependency Property Information

Identifier field IsLockedProperty
Metadata properties set to true AffectsMeasure, Inherits

Applies to

See also