WPF C#

    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
      
        ResizeDirection
        
        Auto (default)
        
        
        Columns
        
        
        Rows
        
      
  


//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 ResizeDirectionChanged(object sender, RoutedEventArgs e)
        {
          if ((Boolean)ResizeDirectionAuto.IsChecked)
            myGridSplitter.ResizeDirection = GridResizeDirection.Auto;
          else if ((Boolean)ResizeDirectionCols.IsChecked)
            myGridSplitter.ResizeDirection = GridResizeDirection.Columns;
          else if ((Boolean)ResizeDirectionRows.IsChecked)
            myGridSplitter.ResizeDirection = GridResizeDirection.Rows;
        }
  
  }
}