MainWindow.xaml 965 B

12345678910111213141516171819202122
  1. <Window x:Class="Prakticheskaya5_Venediktov.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:Prakticheskaya5_Venediktov"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="750" Width="800">
  9. <Grid Background="#ADD8E6">
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="60">
  12. </RowDefinition>
  13. <RowDefinition>
  14. </RowDefinition>
  15. </Grid.RowDefinitions>
  16. <TextBox HorizontalAlignment="Center" Style="{StaticResource TxtBx}">Добро пожаловать!</TextBox>
  17. <Frame Name="frm" Grid.Row="1" NavigationUIVisibility="Hidden">
  18. </Frame>
  19. </Grid>
  20. </Window>