Page Loaded event : Page « Windows Presentation Foundation « VB.Net Tutorial






<Page       x:Class="WpfApplication1.StartPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

      Loaded="Init" />
//File:Window.xaml.vb

Imports System
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Navigation

Namespace WpfApplication1
  Public Partial Class StartPage
    Inherits Page
    Private txtElement As TextBlock
    Private rootPanel As StackPanel
    Private aButton As Button
    Private Sub Init(sender As Object, args As EventArgs)
      rootPanel = New StackPanel()
      txtElement = New TextBlock()
      aButton = New Button()
      aButton.Content = "Press me"

      rootPanel.Children.Add(txtElement)
      rootPanel.Children.Add(aButton)
    End Sub
  End Class
End Namespace
WPF Page Loaded Event








16.56.Page
16.56.1.Automatic InlineUIContainer generation: text along with ButtonAutomatic InlineUIContainer generation: text along with Button
16.56.2.Path Reference Page SnipPath Reference Page Snip
16.56.3.Create a button when the page loads.Create a button when the page loads.
16.56.4.Page Loaded eventPage Loaded event
16.56.5.Remember and navigate through multiple sets of state for a single page instanceRemember and navigate through multiple sets of state for a single page instance
16.56.6.Navigate to an instance of a custom class, instead of a Page.Navigate to an instance of a custom class, instead of a Page.
16.56.7.Select Product Page FunctionSelect Product Page Function
16.56.8.UI With Page for Dynamic Button contentUI With Page for Dynamic Button content
16.56.9.A XAML browser application (XBAP) running in partial trust can safely upload files from a client machine.A XAML browser application (XBAP) running in partial trust can safely upload files from a client machine.