SpisokBikes.xaml 1.9 KB

1234567891011121314151617181920212223242526
  1. <Window x:Class="veloprokat2.SpisokBikes"
  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. xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
  9. Title="Информация о велосипедах" WindowState="Maximized" Icon="mountain_bike_sport_icon_123970.ico">
  10. <Grid Background="#EAF4F4">
  11. <Grid.RowDefinitions>
  12. <RowDefinition/>
  13. </Grid.RowDefinitions>
  14. <Grid.ColumnDefinitions>
  15. <ColumnDefinition/>
  16. <ColumnDefinition/>
  17. </Grid.ColumnDefinitions>
  18. <DataGrid AutoGenerateColumns="True" Name="prodinfo" Grid.Row="0" Margin="355,10,10,10" Grid.RowSpan="2" Grid.ColumnSpan="2">
  19. </DataGrid>
  20. <TextBox x:Name="Search" Background="White" Grid.Row="0" Width="250" Height="50" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,10,0,0"/>
  21. <Button Content="Поиск" Click="Button_Search" Grid.Row="0" FontSize="20" Width="250" Height="50" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,65,0,0"/>
  22. <Button Content="Вернуться" Click="Vixod" FontSize="20" Width="250" Height="50" Margin="10,0,0,9.6" VerticalAlignment="Bottom" HorizontalAlignment="Left" RenderTransformOrigin="0.502,1.584"/>
  23. <Button Content="Новая запись" Click="Insert" FontSize="20" Width="250" Height="50" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,120,0,0"/>
  24. <Button Content="Удалить запись" Click="Delet" FontSize="20" Width="250" Height="50" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,175,0,0"/>
  25. </Grid>
  26. </Window>