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