MainWindow.xaml 1.1 KB

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