Window1.xaml 1.2 KB

12345678910111213141516171819202122
  1. <Window x:Class="veloprokat2.Window1"
  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:veloprokat2"
  7. mc:Ignorable="d"
  8. Title="Список продавцов" WindowState="Maximized" WindowStyle="None">
  9. <Grid Background="#EAF4F4">
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition/>
  12. <ColumnDefinition/>
  13. </Grid.ColumnDefinitions>
  14. <Grid.RowDefinitions>
  15. <RowDefinition/>
  16. <RowDefinition/>
  17. </Grid.RowDefinitions>
  18. <DataGrid AutoGenerateColumns="True" Name="prodinfo" Grid.Column="1" Grid.Row="0" Margin="0,10,10,10" Grid.RowSpan="2"/>
  19. <Button Content="Вернуться" Click="Vixod" FontSize="20" Width="250" Height="50" Margin="65,164,65,50"/>
  20. <Button Content="Добавить" Click="Insert" FontSize="20" Width="250" Height="50" Grid.Column="0" Margin="65,95,65,120"/>
  21. </Grid>
  22. </Window>