SpisokProk.xaml 1.4 KB

1234567891011121314151617181920212223
  1. <Window x:Class="veloprokat2.SpisokProk"
  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" Icon="mountain_bike_sport_icon_123970.ico">
  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,9.6" VerticalAlignment="Bottom" HorizontalAlignment="Left"/>
  22. </Grid>
  23. </Window>