MainWindow.xaml 1.0 KB

1234567891011121314151617181920
  1. <Window x:Class="ProbnikDemo.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:ProbnikDemo"
  7. mc:Ignorable="d"
  8. Title="Приятный шелест" Height="1000" Width="1300"
  9. Icon="res/Приятный шелест.ico">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="100*"/>
  13. <RowDefinition Height="319*"/>
  14. </Grid.RowDefinitions>
  15. <Image Source="res/Приятный шелест.png" HorizontalAlignment="Left"></Image>
  16. <TextBlock Text="Приятный шелест" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="40"></TextBlock>
  17. <Frame x:Name="MainFrame" NavigationUIVisibility="Hidden" Grid.Row="1"></Frame>
  18. </Grid>
  19. </Window>