1234567891011121314151617181920212223242526 |
- <Window x:Class="veloprokat2.SpisokBikes"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:veloprokat2"
- mc:Ignorable="d"
- xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
- Title="Информация о велосипедах" WindowState="Maximized" Icon="mountain_bike_sport_icon_123970.ico">
- <Grid Background="#EAF4F4">
- <Grid.RowDefinitions>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <DataGrid AutoGenerateColumns="True" Name="prodinfo" Grid.Row="0" Margin="355,10,10,10" Grid.RowSpan="2" Grid.ColumnSpan="2">
- </DataGrid>
- <TextBox x:Name="Search" Background="White" Grid.Row="0" Width="250" Height="50" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,10,0,0"/>
- <Button Content="Поиск" Click="Button_Search" Grid.Row="0" FontSize="20" Width="250" Height="50" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,65,0,0"/>
- <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"/>
- <Button Content="Новая запись" Click="Insert" FontSize="20" Width="250" Height="50" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,120,0,0"/>
- <Button Content="Удалить запись" Click="Delet" FontSize="20" Width="250" Height="50" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,175,0,0"/>
- </Grid>
- </Window>
|