xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="GridSplitter Example">
Row 0 Col 0
Row 1 Col 0
Row 2 Col 1
Row 0 Col 1
Row 1 Col 1
Row 2 Col 1
Row 0 Col 2
Row 1 Col 2
Row 2 Col 2
Property Settings
DragIncrement
1 (default)
20
50
//File:Window.xaml.cs
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Media;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace GridSplitter_Example
{
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
}
private void DragIncrementChanged(object sender, RoutedEventArgs e)
{
if ((Boolean)DragIncrementAuto.IsChecked)
myGridSplitter.DragIncrement = 1;
else if ((Boolean)DragIncrementCols.IsChecked)
myGridSplitter.DragIncrement = 20;
else if ((Boolean)DragIncrementRows.IsChecked)
myGridSplitter.DragIncrement = 50;
}
}
}