WPF VB.Net Tutorial

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="FlowContent" Height="400" Width="600">
    
          
      
        Create a Dynamic Document
      

      Largest Cities in the Year 100
      
        
          
          
          
        

        
          
            
              Title 1
            
            
              Title 2
            

            
              Title 3
            

          
          
            
              A
            

            
              A
            

            
              A
            

          

        
      

    

  

//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 Documents
  Public Partial Class FlowContent
    Inherits System.Windows.Window
    Public Sub New()
      InitializeComponent()
    End Sub
    Private Sub cmdCreateDynamicDocument_Click(sender As Object, e As RoutedEventArgs)
      Dim runFirst As New Run()
      runFirst.Text = "A "
      Dim bold As New Bold()
      Dim runBold As New Run()
      runBold.Text = "bold "
      bold.Inlines.Add(runBold)
      Dim runLast As New Run()
      runLast.Text = " documents"
      Dim paragraph As New Paragraph()
      paragraph.Inlines.Add(runFirst)
      paragraph.Inlines.Add(bold)
      paragraph.Inlines.Add(runLast)
      Dim document As New FlowDocument()
      document.Blocks.Add(paragraph)
      docViewer.Document = document
    End Sub
  End Class
End Namespace