Represents a control consisting of two resizable
UIElement objects.
Namespace:
DevZest.Windows
Assembly:
DevZest.WpfDocking (in DevZest.WpfDocking.dll)
Syntax
| Visual Basic (Declaration) |
|---|
Public Class SplitContainer _
Inherits FrameworkElement |
Remarks
Examples
The following example shows a sample use of
SplitContainer.
CopyXAML
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:dz="http://schemas.devzest.com/presentation"
Width="300" Height="300">
<dz:SplitContainer>
<dz:SplitContainer.Child1>
<Button Content="Button1"/>
</dz:SplitContainer.Child1>
<dz:SplitContainer.Child2>
<dz:SplitContainer Orientation="Horizontal" ShowsPreview="False">
<dz:SplitContainer.Child1>
<Button Content="Button2"/>
</dz:SplitContainer.Child1>
<dz:SplitContainer.Child2>
<Button Content="Button3"/>
</dz:SplitContainer.Child2>
</dz:SplitContainer>
</dz:SplitContainer.Child2>
</dz:SplitContainer>
</Window>
Inheritance Hierarchy
See Also