MainWindow.xaml 1.3 KB

123456789101112131415161718192021222324252627282930
  1. <Window x:Class="ROGOZ.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:ROGOZ"
  7. mc:Ignorable="d"
  8. Background="#f2faff"
  9. Title="𝖊𝖘𝖔𝖋𝖙" Height="620" Width="1000"
  10. ResizeMode="NoResize">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="75"/>
  14. <RowDefinition Height="69*"/>
  15. <RowDefinition Height="30"/>
  16. </Grid.RowDefinitions>
  17. <Grid Grid.Row="0" Grid.ColumnSpan="3" Background="#b3deff"/>
  18. <Grid Grid.Row="2" Grid.ColumnSpan="3" Background="#b3deff"/>
  19. <Image Source="Resources/logo.png" HorizontalAlignment="Left" Margin="15,0"/>
  20. <TextBlock Text="HEADER" Grid.Column="1" Style="{StaticResource BlockHeader}"/>
  21. <Frame Name="MainFrame" NavigationUIVisibility="Hidden" Grid.Row="1" Grid.ColumnSpan="3"/>
  22. <Grid.ColumnDefinitions>
  23. <ColumnDefinition/>
  24. <ColumnDefinition/>
  25. <ColumnDefinition/>
  26. </Grid.ColumnDefinitions>
  27. </Grid>
  28. </Window>