MainWindow.xaml 1.1 KB

123456789101112131415161718192021222324252627
  1. <Window x:Class="ShabaninDemoEkz.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:ShabaninDemoEkz"
  7. mc:Ignorable="d"
  8. Title="Агенты" Height="450" Width="800"
  9. Icon="Resurses/Приятный шелест.ico"
  10. >
  11. <Grid>
  12. <Grid.ColumnDefinitions>
  13. <ColumnDefinition Width="75"/>
  14. <ColumnDefinition Width="*"/>
  15. </Grid.ColumnDefinitions>
  16. <Grid.RowDefinitions>
  17. <RowDefinition Height="100"/>
  18. <RowDefinition Height="*"></RowDefinition>
  19. </Grid.RowDefinitions>
  20. <DockPanel Grid.ColumnSpan="2">
  21. <Image Source="Resurses/Приятный шелест.png"/>
  22. <TextBlock Text="Приятный шелест" FontSize="58"/>
  23. </DockPanel>
  24. <Frame x:Name="MainFrame" Grid.ColumnSpan="2" Grid.Row="1"/>
  25. </Grid>
  26. </Window>