LayoutControl.CustomizationControlStyle Property
In This Article
Gets or sets the style applied to the Customization Control.
Namespace: DevExpress.Xpf.LayoutControl
Assembly: DevExpress.Xpf.LayoutControl.v14.2.dll
#Declaration
#Property Value
Type | Description |
---|---|
Style | A Style object that represents the corresponding style. |
#Remarks
NOTE
This style is intended for the Layout
The Customization Control is a transparent control that is made visible in Customization mode. It draws a red border around the LayoutControl and displays a button used to invoke the Available Items List:
The following code shows how to change the Customization Control's border color from red to green:
<UserControl.Resources>
<Style TargetType="dxlc:LayoutControlCustomizationControl" x:Key="myStyle">
<Setter Property="BorderBrush" Value="Green"/>
</Style>
</UserControl.Resources>
<dxlc:LayoutControl Name="layoutControl1" CustomizationControlStyle="{StaticResource myStyle}" >
...
See Also