Guest User

Main XAML

a guest
Nov 4th, 2014
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.31 KB | None | 0 0
  1. <Window x:Class="WpfApplication1.MainWindow"
  2.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.         Title="PattersonCode Status" Height="350" Width="525">
  5.    <Grid Loaded="Grid_Loaded">
  6.        <Label x:Name="maindisplay" Content="PattersonCode (Main)" HorizontalAlignment="Left" Margin="90,46,0,0" VerticalAlignment="Top" FontFamily="Segoe UI Light"/>
  7.        <Label x:Name="backupdisplay" Content="PattersonCode (Backup)&#xD;&#xA;" HorizontalAlignment="Left" Margin="90,124,0,0" VerticalAlignment="Top" FontFamily="Segoe UI Light"/>
  8.        <Button Content="ReCheck" HorizontalAlignment="Left" Margin="388,72,0,0" VerticalAlignment="Top" Width="75" Click="Button_Click"/>
  9.        <Label x:Name="cdndisplay" Content="PattersonCode (CDN)" HorizontalAlignment="Left" Margin="90,87,0,0" VerticalAlignment="Top" FontFamily="Segoe UI Light"/>
  10.        <Label x:Name="backuplabel" Content="Label" HorizontalAlignment="Left" Margin="246,124,0,0" VerticalAlignment="Top"/>
  11.        <Label x:Name="cdnlabel" Content="Label" HorizontalAlignment="Left" Margin="246,87,0,0" VerticalAlignment="Top"/>
  12.        <Label x:Name="mainlabel" Content="Label" HorizontalAlignment="Left" Margin="246,46,0,0" VerticalAlignment="Top"/>
  13.     </Grid>
  14. </Window>
Advertisement
Add Comment
Please, Sign In to add comment