MainWindow.xaml 1.2 KB

12345678910111213141516171819202122
  1. <Window x:Class="UP2022Ex.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:UP2022Ex"
  7. mc:Ignorable="d"
  8. Title="Приятный шелест" Height="450" Width="800" MinHeight="450" MinWidth="800" MaxHeight="450" MaxWidth="800" Icon="Resources\Приятный шелест.ico">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="100"></RowDefinition>
  12. <RowDefinition></RowDefinition>
  13. </Grid.RowDefinitions>
  14. <StackPanel Orientation="Horizontal" Grid.Row="0" HorizontalAlignment="Center">
  15. <Image Source="Resources\Приятный шелест.png"/>
  16. <StackPanel VerticalAlignment="Center" Margin="10 0 0 0">
  17. <TextBlock FontSize="20">Приятный шелест</TextBlock>
  18. </StackPanel>
  19. </StackPanel>
  20. <Frame Grid.Row="1" Name="Fmain" NavigationUIVisibility="Hidden"/>
  21. </Grid>
  22. </Window>