WPF VB.Net Tutorial

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="WPF" Height="140" Width="300">
    
        
            
            
        

        
            
        

        
                         Grid.Column="1"/>
        
        
                         Grid.Column="1"
                 Grid.Row="1"/>
        
        
                         Grid.Column="1"
                 Grid.Row="2"/>
    

//File:Window.xaml.vb
Imports System.Windows
Namespace WpfApplication1
  Public Partial Class Window1
    Inherits Window
    Public Sub New()
      InitializeComponent()
      Me.DataContext = New Employee() With { _
        .FirstName = "Nelly", _
        .LastName = "Blinks", _
        .Age = 26 _
      }
    End Sub
  End Class
  Public Class Employee
    Public Property FirstName() As String
      Get
        Return m_FirstName
      End Get
      Set
        m_FirstName = Value
      End Set
    End Property
    Private m_FirstName As String
    Public Property LastName() As String
      Get
        Return m_LastName
      End Get
      Set
        m_LastName = Value
      End Set
    End Property
    Private m_LastName As String
    Public Property Age() As Integer
      Get
        Return m_Age
      End Get
      Set
        m_Age = Value
      End Set
    End Property
    Private m_Age As Integer
  End Class
End Namespace