WPF C# Tutorial

    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
    
      HorizontalAlignment
      
        Left
      
      
        Right (default)
      
      
        Center
      
      
        Stretch
      
    

  


//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 HorizontalAlignmentChanged(object sender, RoutedEventArgs e)
      {
          if ((Boolean)HorizontalAlignmentLeft.IsChecked)
            myGridSplitter.HorizontalAlignment = HorizontalAlignment.Left;
          else if ((Boolean)HorizontalAlignmentRight.IsChecked)
            myGridSplitter.HorizontalAlignment = HorizontalAlignment.Right;
          else if ((Boolean)HorizontalAlignmentCenter.IsChecked)
            myGridSplitter.HorizontalAlignment = HorizontalAlignment.Center;
          else if ((Boolean)HorizontalAlignmentStretch.IsChecked)
            myGridSplitter.HorizontalAlignment = HorizontalAlignment.Stretch;
      }
  }
}