MainWindow.xaml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <Window x:Class="SportComplex.MainWindow"
  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:SportComplex"
  7. mc:Ignorable="d"
  8. WindowStartupLocation="CenterScreen"
  9. MinHeight="590"
  10. MinWidth="850"
  11. Title="Спортивный комплекс" Height="590" Width="850">
  12. <Grid>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="75"/>
  15. <RowDefinition Height="*"/>
  16. </Grid.RowDefinitions>
  17. <Grid Grid.Row="0"
  18. Background="#FF05CCFF"/>
  19. <Image Source="/Resources/gym.png"
  20. HorizontalAlignment="Left"
  21. Margin="10 0 0 0"/>
  22. <Image Source="/Resources/run_human.png"
  23. HorizontalAlignment="Right"
  24. Height="50"
  25. Margin="0 0 10 0"/>
  26. <TextBlock Text="Спортивный комплекс"
  27. HorizontalAlignment="Center"
  28. VerticalAlignment="Center"
  29. FontSize="35"
  30. Foreground="White"
  31. FontFamily="Calibri"/>
  32. <Frame Grid.Row="1"
  33. Name="MainFrame"
  34. NavigationUIVisibility="Hidden"
  35. Source="/Program/Pages/ConnectMode.xaml"/>
  36. </Grid>
  37. </Window>