Advertisement
Guest User

Untitled

a guest
May 19th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. <Window x:Class="Mining_INC.StartGameWin"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Mining_INC"
  7. mc:Ignorable="d"
  8. WindowStyle="None" ResizeMode="NoResize"
  9. WindowStartupLocation="CenterScreen" WindowState="Maximized"
  10. Background="DimGray"
  11. Title="StartGameWin" Height="1080" Width="1920">
  12. <Grid x:Name="back">
  13. <Grid.ColumnDefinitions>
  14. <ColumnDefinition Width="174*"/>
  15. <ColumnDefinition Width="1465*"/>
  16. <ColumnDefinition Width="281*"/>
  17. </Grid.ColumnDefinitions>
  18. <Grid.RowDefinitions>
  19. <RowDefinition Height="42*"/>
  20. <RowDefinition Height="31*"/>
  21. <RowDefinition Height="1007*"/>
  22. </Grid.RowDefinitions>
  23.  
  24. <Button Content="Play" Click="BtnClickBack" Grid.Row="1" Grid.Column="0" />
  25. <Label x:Name="Money" Content="Label" Grid.Row="0" Grid.Column="2" Grid.ColumnSpan="1"/>
  26. <Menu x:Name="Gamemenue" Grid.RowSpan="1" Grid.ColumnSpan="1" >
  27. <MenuItem Header="Menu"/>
  28. <MenuItem Header="Research"/>
  29. <MenuItem Header="Construct"/>
  30. </Menu>
  31. </Grid>
  32. </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement