Create a button when the page loads. : Page « Windows Presentation Foundation « C# / C Sharp






Create a button when the page loads.

Create a button when the page loads.
  

<StackPanel
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  x:Class="WpfApplication1.FELoaded" Loaded="OnLoad" Name="root">
</StackPanel>
//File:Window.xaml.cs

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

namespace WpfApplication1 {
    public partial class FELoaded {
        void OnLoad(object sender, RoutedEventArgs e)
        {
            Button b1 = new Button();
            b1.Content = "New Button";
            root.Children.Add(b1);
            b1.Height = 25;
            b1.Width = 200;
            b1.HorizontalAlignment = HorizontalAlignment.Left;
        }
    }
}

   
    
  








Related examples in the same category

1.Page Loaded eventPage Loaded event
2.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
3.Navigate to an instance of a custom class, instead of a Page.Navigate to an instance of a custom class, instead of a Page.
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.