123456789101112131415161718192021222324 |
- <Window x:Class="Turaev_BD_11._20._1.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:Turaev_BD_11._20._1"
- mc:Ignorable="d"
- Title="MainWindow" Height="450" Width="800">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="75*"/>
- <RowDefinition Height="315*"/>
- <RowDefinition Height="29*"/>
- </Grid.RowDefinitions>
- <Image HorizontalAlignment="Left" Height="73" Margin="10,2,0,0" VerticalAlignment="Top" Width="73" Source="Resources/логотип.png"/>
- <Label Content="Header" HorizontalAlignment="Left" Margin="339,21,0,0" VerticalAlignment="Top" Height="44" FontSize="24"/>
- <Border BorderThickness="1" HorizontalAlignment="Left" Height="29" Grid.Row="2" VerticalAlignment="Top" Width="792"/>
- <Rectangle Fill="#FF4C4CFF" HorizontalAlignment="Left" Height="29" Grid.Row="2" Stroke="Black" VerticalAlignment="Top" Width="792"/>
- <Border BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="75" VerticalAlignment="Top" Width="792"/>
- <Rectangle Fill="#FF4CD6FF" HorizontalAlignment="Left" Height="75" Stroke="Black" VerticalAlignment="Top" Width="792" Opacity="0.4" IsHitTestVisible="False"/>
- <Button Content="Back" Name="BtnBack" HorizontalAlignment="Left" Margin="607,32,0,0" VerticalAlignment="Top" Click="BtnBack_Click"/>
- <Frame NavigationUIVisibility="Hidden" ContentRendered="MainFrame_ContentRendered" Grid.Row="1" Name="MainFrame" Navigated="MainFrame_Navigated" Height="315" VerticalAlignment="Bottom" HorizontalAlignment="Right" Width="792"/>
- </Grid>
- </Window>
|