123456789101112131415161718 |
- <Window x:Class="Услуги_школы_иностранных_языков.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:Услуги_школы_иностранных_языков"
- mc:Ignorable="d"
- Title="Услуги работы школы" Icon="res\school_logo.ico" Height="450" Width="800">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="132*"/>
- <RowDefinition Height="287*"/>
- </Grid.RowDefinitions>
- <Image Source="res\school_logo.png" HorizontalAlignment="Left" VerticalAlignment="Center"></Image>
- <TextBlock Text="Услуги работы школы" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="30"></TextBlock>
- <Frame x:Name="MainFrame" NavigationUIVisibility="Hidden" Grid.Row="1"></Frame>
- </Grid>
- </Window>
|