MainWindow.xaml 1.1 KB

1234567891011121314151617181920212223242526
  1. <Window x:Class="TestWpfApp.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:TestWpfApp"
  7. mc:Ignorable="d"
  8. Title="Проектdfghjkl" Height="450" Width="800">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="250"/>
  12. <ColumnDefinition Width="*"/>
  13. </Grid.ColumnDefinitions>
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="75"/>
  16. <RowDefinition Height="*"/>
  17. <RowDefinition Height="75"/>
  18. </Grid.RowDefinitions>
  19. <StackPanel Grid.Column="1" Grid.Row="1">
  20. <Button Width="125" Height="25" ></Button>
  21. <Button Width="125" Height="25" ></Button>
  22. <Button Width="125" Height="25" ></Button>
  23. <Button Width="125" Height="25"></Button>
  24. </StackPanel>
  25. </Grid>
  26. </Window>