MainWindow.xaml 979 B

12345678910111213141516171819202122232425
  1. <Window x:Class="WpfApp1.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:WpfApp1"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="450" Width="800">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="133"/>
  12. <ColumnDefinition/>
  13. </Grid.ColumnDefinitions>
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="130"/>
  16. <RowDefinition Height="*"/>
  17. </Grid.RowDefinitions>
  18. <StackPanel>
  19. <TextBlock Grid.Row="1" Text="{Binding Title}"/>
  20. <Button Content="Кнопка"/>
  21. <Button Content="Кнопка2"/>
  22. </StackPanel>
  23. <Frame />
  24. </Grid>
  25. </Window>