WPF VB.Net Tutorial

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="columndefinitions_grid.Window1"
    Title="ColumnDefinitions Sample">
    
  
    Grid Column and Row Collections
        
          
            
          

          
          
            
          

        
        
            Remove One Row
            
  
    

//File:Window.xaml.vb
Imports System
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Documents
Namespace columndefinitions_grid
  Public Partial Class Window1
    Inherits Window
    Private rowDef1 As RowDefinition
    Private colDef1 As ColumnDefinition
    Private Sub removeRow(sender As Object, e As RoutedEventArgs)
      If grid1.RowDefinitions.Count <= 0 Then
        Console.WriteLine("No More Rows to Remove!")
      Else
        grid1.RowDefinitions.RemoveAt(0)
      End If
    End Sub
  End Class
End Namespace