Main.xaml 1.2 KB

12345678910111213141516171819202122
  1. <Window x:Class="DemoPractick.Main"
  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:DemoPractick"
  7. mc:Ignorable="d"
  8. Title="Намордники" Height="520" MinHeight="520" Width="900" MinWidth="900" Icon="Source\IcoLogo\Намордник.ico">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="59*"/>
  12. <ColumnDefinition Width="391*"/>
  13. </Grid.ColumnDefinitions>
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="113*"/>
  16. <RowDefinition Height="391*"/>
  17. </Grid.RowDefinitions>
  18. <Image x:Name="logo" Height="100" Width="100" Margin="0,0,0,0" Source="Source\IcoLogo\Намордник.png"/>
  19. <Label Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="25" Content="НАМОРДНИКИ" Height="37" Width="186"></Label>
  20. <Frame x:Name="MainPage" Grid.Row="1" Grid.Column="1" NavigationUIVisibility="Hidden" Margin="1,1,1,1"/>
  21. </Grid>
  22. </Window>