LayoutControlToolBox
LayoutControlToolBox can be used to embed the toolbox into the layout control. This article demonstrates how to set it up and associate it with RadLayoutControl.
- Setting up the toolbox
- Manually control the toolbox view visibility
- Customize the toolbox view
- Style the toolbox view host window
- Position the toolbox button
Setting up the toolbox
This section shows a sample toolbox definition.
Example 1: Setting up the toolbox in XAML
Example 2: Setting up the toolbox in code
The toolbox can be associated with RadLayoutControl through its LayoutControl property (see Example 1).
Initially, the LayoutControlToolBox displays a single toggle button (see Figure 1).
Figure 1: Closed toolbox
The toggle button will be displayed only if the layout control is in edit mode.
When the button is clicked the toolbox view will be opened in a popup.
Figure 2: Toolbox view
Manually control the toolbox view visibility
You can manually control the state of the toolbox through the IsOpen property of LayoutControlToolBox.
Example 3: Setting the IsOpen property in XAML
Example 4: Setting the IsOpen property in code
Customize the toolbox view
The popup of the LayoutControlToolBox component contains a LayoutControlToolBoxView element. You can use the ToolBoxView property to get this element and modify it. Or to define a new toolbox view and assign it to the LayoutControlToolBox.
Example 5: Replacing the default toolbox view
Figure 3: Modified toolbox view
Style the toolbox view host window
The toolbox view is displayed in a RadWindow element which can be customized through the WindowStyle property of LayoutControlToolBox.
Example 6: Setting custom window style
The BasedOn setting is applicable only in a scenario with implicit styles. This attribute is set so that the custom style inherits the default toolbox window style. The LayoutControlToolBoxWindowStyle is located in the Telerik.Windows.Controls.Navigation.xaml ResourceDictionary.
Figure 4: Custom window style
Position the toolbox button
The button that opens the toolbox can be re-positioned in the additional items canvas of RadLayoutControl. This can be done via the Canvas.Left, Canvas.Top, Canvas.Right and Canvas.Bottom properties.