TestInfoBikes.xaml 1.6 KB

123456789101112131415161718192021222324
  1. <Window x:Class="veloprokat2.TestInfoBikes"
  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">
  9. <Grid Background="#EAF4F4">
  10. <Grid.RowDefinitions>
  11. <RowDefinition/>
  12. </Grid.RowDefinitions>
  13. <Grid.ColumnDefinitions>
  14. <ColumnDefinition/>
  15. <ColumnDefinition/>
  16. </Grid.ColumnDefinitions>
  17. <DataGrid AutoGenerateColumns="True" Name="prodinfo" Grid.Row="0" Margin="355,10,10,10" Grid.RowSpan="2" Grid.ColumnSpan="2">
  18. </DataGrid>
  19. <TextBox x:Name="Search" Background="White" Grid.Row="0" Width="250" Height="50" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,10,0,0"/>
  20. <Button Content="Поиск" Click="Button_Search" Grid.Row="0" FontSize="20" Width="250" Height="50" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,65,0,0"/>
  21. <Button Content="Вернуться" Click="Vixod" FontSize="20" Width="250" Height="50" Margin="10,0,0,269.6" VerticalAlignment="Bottom" HorizontalAlignment="Left" RenderTransformOrigin="0.502,1.584"/>
  22. <Button Content="Изменить статус" Click="Insert" FontSize="20" Width="250" Height="50" Margin="10,0,0,325" VerticalAlignment="Bottom" HorizontalAlignment="Left"/>
  23. </Grid>
  24. </Window>