WPF VB.Net Tutorial

  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  x:Class="WpfApplication1.FEFindName">
  
      
        
        
        
      
      
        
        
      
  

  Find element with the ID "dog" and change color
  
    Cat
    Dog
    Fish    
  

//File:Window.xaml.vb
Imports System
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Media
Namespace WpfApplication1
  Public Partial Class FEFindName
    Private Sub Find(sender As Object, e As RoutedEventArgs)
      Dim wantedNode As Object = stackPanel.FindName("dog")
      If TypeOf wantedNode Is TextBlock Then
        Dim wantedChild As TextBlock = TryCast(wantedNode, TextBlock)
        wantedChild.Foreground = Brushes.Blue
      End If
    End Sub
  End Class
End Namespace