About Dialog - Font Properties on Root : Dialog « Windows Presentation Foundation « C# / CSharp Tutorial






<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  Title="About WPF" SizeToContent="WidthAndHeight"
  FontSize="30" FontStyle="Italic"
  Background="OrangeRed">
  <StackPanel>
    <Label FontWeight="Bold" FontSize="20" Foreground="White">
      WPF Version
    </Label>
    <Label>2010</Label>
    <Label>Installed Dll:</Label>
    <ListBox>
      <ListBoxItem>1</ListBoxItem>
      <ListBoxItem>2</ListBoxItem>
    </ListBox>
    <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
      <Button MinWidth="75" Margin="10">Help</Button>
      <Button MinWidth="75" Margin="10">OK</Button>
    </StackPanel>
    <StatusBar>You have successfully registered this product.</StatusBar>
  </StackPanel>
</Window>
WPF About Dialog Font Properties On Root








24.73.Dialog
24.73.1.Basic DialogBoxBasic DialogBox
24.73.2.About DialogAbout Dialog
24.73.3.About Dialog - Font Properties on RootAbout Dialog - Font Properties on Root
24.73.4.Display window as dialogDisplay window as dialog
24.73.5.Close a dialog after pressing enter in a TextBox