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
        
          
            
          

          
          
            
          

        
        
            How Many Rows?
            
  
    

//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 rowCount(sender As Object, e As RoutedEventArgs)
      Console.WriteLine("The current number of Rows is: " + grid1.RowDefinitions.Count)
    End Sub
  End Class
End Namespace