MainWindow.xaml 1.3 KB

1234567891011121314151617181920212223242526272829
  1. <Window x:Class="Write_erase.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:Write_erase"
  7. mc:Ignorable="d"
  8. Icon="Images/icon.ico"
  9. Title="Write-erase" Height="450" Width="800">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="80"></RowDefinition>
  13. <RowDefinition></RowDefinition>
  14. </Grid.RowDefinitions>
  15. <Grid.ColumnDefinitions>
  16. <ColumnDefinition Width="100"></ColumnDefinition>
  17. <ColumnDefinition></ColumnDefinition>
  18. </Grid.ColumnDefinitions>
  19. <StackPanel>
  20. <Image Source="Images/Logo.png" Height="79"/>
  21. </StackPanel>
  22. <StackPanel Grid.Column="1">
  23. <TextBlock Margin="0,25,0,0" FontSize="22" Style="{StaticResource TextBlockStyle}" HorizontalAlignment="Center" VerticalAlignment="Center" TextAlignment="Center" FontWeight="Bold">ООО «Пиши-стирай»</TextBlock>
  24. </StackPanel>
  25. <Frame Name="mainFrame" NavigationUIVisibility="Hidden" Grid.Row="1" Grid.Column="1">
  26. </Frame>
  27. </Grid>
  28. </Window>