Page Loaded event : Page « Windows Presentation Foundation « C# / C Sharp






Page Loaded event

Page Loaded event
  
<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.cs

using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;

namespace WpfApplication1
{
    public partial class StartPage : Page
    {
        TextBlock txtElement;
        StackPanel rootPanel;
        Button aButton;
        void Init(object sender, EventArgs args)
        {
            rootPanel = new StackPanel();
            txtElement = new TextBlock();
            aButton = new Button();
            aButton.Content = "Press me";
    
            rootPanel.Children.Add(txtElement);
            rootPanel.Children.Add(aButton);
        }
    }
}

   
    
  








Related examples in the same category

1.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
2.Navigate to an instance of a custom class, instead of a Page.Navigate to an instance of a custom class, instead of a Page.
3.Create a button when the page loads.Create a button when the page loads.
4.UI With Page for Dynamic Button contentUI With Page for Dynamic Button content
5.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.