Advertisement
Vermiculus

Interface

Sep 28th, 2012
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.34 KB | None | 0 0
  1. <Window x:Class="mockup.MainWindow"
  2.        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.        Title="Blackjack!" Height="336" Width="589" Background="#FF005100">
  5.     <Grid>
  6.         <Grid.RowDefinitions>
  7.             <RowDefinition Height="20" />
  8.             <RowDefinition Height="1*" />
  9.         </Grid.RowDefinitions>
  10.         <Menu Name="menu1" >
  11.             <MenuItem Header="_File...">
  12.                 <MenuItem Header="_New Game" />
  13.                 <MenuItem Header="_Statistics" />
  14.                 <MenuItem Header="E_xit" />
  15.             </MenuItem>
  16.             <MenuItem Header="_Help...">
  17.                 <MenuItem Header="_About" />
  18.             </MenuItem>
  19.         </Menu>
  20.         <Button Content="Hit" Grid.Row="1" Height="23" HorizontalAlignment="Left" Margin="93,152,0,0" Name="button1" VerticalAlignment="Top" Width="120" Background="#32000000" IsDefault="True" BorderBrush="#96000000" Foreground="White" FontWeight="SemiBold" />
  21.         <Rectangle Grid.Row="1" Height="22" HorizontalAlignment="Left" Margin="12,6,0,0" Name="rectangle1" Stroke="Black" VerticalAlignment="Top" Width="75" Fill="#610000FF" />
  22.         <Button Content="Split" Grid.Row="1" Height="23" HorizontalAlignment="Left" Margin="93,181,0,0" Name="button2" VerticalAlignment="Top" Width="120" IsEnabled="False" Background="#32000000" />
  23.         <Button Content="Stand" Grid.Row="1" Height="23" HorizontalAlignment="Left" Margin="93,210,0,0" Name="button3" VerticalAlignment="Top" Width="120" Background="#32000000" Foreground="White" FontWeight="SemiBold" />
  24.         <Rectangle Grid.Row="1" Margin="0,26,12,0" Name="rectangle5" Stroke="Black" HorizontalAlignment="Right" Width="100" Height="120" VerticalAlignment="Top" Fill="#95880000" />
  25.         <Rectangle Height="120" Margin="0,6,32,0" Name="rectangle4" Stroke="Black" VerticalAlignment="Top" Grid.Row="1" HorizontalAlignment="Right" Width="100" Fill="#FF880000" />
  26.         <Rectangle Fill="#95880000" Height="120" HorizontalAlignment="Left" Margin="113,26,0,0" Name="rectangle6" Stroke="Black" VerticalAlignment="Top" Width="100" Grid.Row="1" />
  27.         <Rectangle Fill="#FF880000" Height="120" HorizontalAlignment="Left" Margin="93,6,0,0" Name="rectangle2" Stroke="Black" VerticalAlignment="Top" Width="100" Grid.Row="1" />
  28.     </Grid>
  29. </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement