ClassToolWindow
Represents the RadDocking for Silverlight ToolWindow control wrapper. The tool window always contains a single SplitContainer instance that may hold other containers or pane groups.
Definition
Namespace:Telerik.WebAii.Controls.Xaml
Assembly:Telerik.WebAii.Controls.Xaml.dll
Syntax:
public class ToolWindow : ContentControl, IAutomationPeer, IPeerConverter, IToolWindow, IContentControl, IControl, IFrameworkElement, ITargetElement
Inheritance: objectAutomationObject<FrameworkElement>FrameworkElementSilverlightTestElementControlContentControlToolWindow
Implements:
Inherited Members
Constructors
ToolWindow()
Initializes a new instance of the ToolWindow class.
Declaration
public ToolWindow()
Properties
HeaderElement
Get the tool window header element.
HorizontalOffset
Get the value providing the horizontal offset of the window via automation property.
Declaration
public double HorizontalOffset { get; }
Property Value
Implements
IsOpen
Get the value providing the ToolWindow isOpen of the window via automation property.
SplitContainer
Get the split container element.
Declaration
public RadSplitContainer SplitContainer { get; }
Property Value
Title
Get the tool window title.
VerticalOffset
Get the value providing the vertical offset of the window via automation property.
Declaration
public double VerticalOffset { get; }
Property Value
Implements
VisibleRectangle
Get the visible screen rectangle of the tool window.
Methods
Close()
Simulates user clicking on the close button to close the tool window.
Declaration
public void Close()
Implements
MoveAwayFromContainerCenter(RadSplitContainer)
Moves the window away from the container it covers so that one can dock controls into that container.
Declaration
public void MoveAwayFromContainerCenter(RadSplitContainer container)
Parameters
container
The target container.
MoveAwayFromContainerCenter(RadSplitContainer, DockingDragDirection)
Moves the window away from the container it covers so that one can dock controls into that container.
Declaration
public void MoveAwayFromContainerCenter(RadSplitContainer container, DockingDragDirection direction)
Parameters
container
The target split container.
direction
The docking drag direction to move the tool window on.
MoveAwayFromContainerCenter(RadSplitContainer, DockingDragDirection, int)
Moves the window away from the container it covers so that one can dock controls into that container.
Declaration
public void MoveAwayFromContainerCenter(RadSplitContainer container, DockingDragDirection direction, int offset)
Parameters
container
The target split container.
direction
The docking drag direction to move the tool window on.
offset
The offset in pixels to move the tool window with.
MoveBy(int, int)
Moves the ToolWindow by the given offset values.
SelectToolWindow()
Select the current ToolWindow by clickin on its Header
Declaration
public void SelectToolWindow()
Implements