WPF GridSplitter control is a divider that helps to split the available space into rows and columns in a grid. It supports to splits the controls horizontally or vertically with a splitter. In addition to that, it allows users to resize the grid’s column width and row height on demand. It also supports preview for resizing splitter controls as well as expanding and collapsing the view.
Allow users to split the controls in both horizontal and vertical orientation.
The WPF GridSplitter control allows users to resize the controls to occupy all the available space in the view. Supports restrict resizing to minimum and maximum sizes for views. It also supports previews for resizing controls while resizing splitter.
Provides support to expand and collapse views through expand and collapse options in UI.
Provides support for multiple views in WPF GridSplitter to arrange controls with different orientation. It makes splitting the screen easier and allows users to collapse views to get more readability for specific views.
Easily get started with the WPF GridSplitter using a few simple lines of XAML and C# code example as demonstrated below. Also explore our WPF GridSplitter Example that shows you how to render and configure the XAML GridSplitter.
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="auto" />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
TextAlignment="Center"
Text="Panel 1">
</TextBlock>
<TextBlock Grid.Row="2"
TextAlignment="Center"
Text="Panel 2">
</TextBlock>
<!--Grid Splitter-->
<syncfusion:SfGridSplitter Name="gridSplitter"
HorizontalAlignment="Stretch"
ResizeBehavior="PreviousAndNext"
Width="auto"
Grid.Row="1">
</syncfusion:SfGridSplitter>
</Grid>
using Syncfusion.UI.Xaml.Grid;
namespace WpfApplication1
{
public partial class MainWindow : Window
{
public MainWindow()
{
Grid root = new Grid();
root.RowDefinitions.Add(new RowDefinition());
root.RowDefinitions.Add(new RowDefinition {
Height = new GridLength(0, GridUnitType.Auto)});
root.RowDefinitions.Add(new RowDefinition());
TextBlock panel1 = new TextBlock
{
Text = "Panel 1",
TextAlignment = TextAlignment.Center
};
TextBlock panel2 = new TextBlock
{
Text = "Panel 2",
TextAlignment = TextAlignment.Center
};
Grid.SetRow(panel2, 2);
SfGridSplitter splitter = new SfGridSplitter
{
HorizontalAlignment = HorizontalAlignment.Stretch,
ResizeBehavior = GridResizeBehavior.PreviousAndNext,
};
Grid.SetRow(splitter, 2);
root.Children.Add(panel1);
root.Children.Add(panel2);
root.Children.Add(splitter);
}
}
}
We do not sell the WPF GridSplitter control separately. It is only available for purchase as part of the Syncfusion WPF suite, which contains over 100 WPF controls, including GridSplitter. A single developer license for the Syncfusion Essential Studio for WPF suite costs $995.00 USD, including one year of support and updates. On top of this, we might be able to offer additional discounts based on currently active promotions. Please contact our sales team to see if you qualify for any additional discounts.
No, our 100+ WPF controls, including GridSplitter, are not sold individually, only as a single package. However, we have competitively priced the product so it only costs a little bit more than what some other vendors charge for their GridSplitter alone. We have also found that, in our experience, our customers usually start off using one of our products and then expand to several products quickly, so we felt it was best to offer all 100+ WPF controls for a flat fee of $995/developer. On top of this, we might be able to offer additional discounts based on currently active promotions. Please contact our sales team today to see if you qualify for any additional discounts.
No, this is a commercial product and requires a paid license. However, a free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
A good place to start would be our comprehensive getting started documentation.
Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion is proud to hold the following industry awards.