WPF VB.Net Tutorial

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="ScrollableTextBoxColumn" Height="181" Width="283" MinWidth="250">
  
    
    
      Line Up
      Line Down
      Page Up
      Page Down
    
  
  
    
      
        
      

      
        
        
        
      

      A
      
      A
      A
      
      B
      B
      
      B
      C
      
      C
      D
      
      D
      E
      
      E
      F:
      
      B
      S
      
      B
    
  
  


//File:Window.xaml.vb
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Data
Imports System.Windows.Documents
Imports System.Windows.Input
Imports System.Windows.Media
Imports System.Windows.Media.Imaging
Imports System.Windows.Shapes
Namespace Content
  Public Partial Class ScrollableTextBoxColumn
    Inherits System.Windows.Window
    Public Sub New()
      InitializeComponent()
    End Sub
    Private Sub LineUp(sender As Object, e As RoutedEventArgs)
      scroller.LineUp()
    End Sub
    Private Sub LineDown(sender As Object, e As RoutedEventArgs)
      scroller.LineDown()
    End Sub
    Private Sub PageUp(sender As Object, e As RoutedEventArgs)
      scroller.PageUp()
    End Sub
    Private Sub PageDown(sender As Object, e As RoutedEventArgs)
      scroller.PageDown()
    End Sub
  End Class
End Namespace