|
@@ -0,0 +1,72 @@
|
|
|
+<Window x:Class="kursach_2._0.Windows.Invoices"
|
|
|
+ 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:kursach_2._0.Windows"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ Title="Дилерская компания" Height="800" Width="600"
|
|
|
+ MinHeight="400" MinWidth="600" WindowStartupLocation="CenterScreen">
|
|
|
+ <Grid>
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="0.125*"/>
|
|
|
+ <RowDefinition/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Grid Grid.Row="0">
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition/>
|
|
|
+ <ColumnDefinition Width="0.2*"/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <Rectangle Fill="#8aabdd" Grid.Row="0" Grid.ColumnSpan="2" Stroke="Gray"/>
|
|
|
+ <Label Content="Накладные" Grid.Row="0"
|
|
|
+ FontFamily="Montserrat Medium" FontSize="36"
|
|
|
+ Margin="15, 0" VerticalAlignment="Center" />
|
|
|
+ <Image Source="/Images/home.png" Grid.Row="0" Grid.Column="1" Margin="15"/>
|
|
|
+ </Grid>
|
|
|
+ <TabControl Grid.Row="1">
|
|
|
+ <TabItem Header="История" FontFamily="Montserrat Medium" >
|
|
|
+ <Grid Background="#FFE5E5E5">
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="0.2*"/>
|
|
|
+ <RowDefinition Height="0.1*"/>
|
|
|
+ <RowDefinition/>
|
|
|
+ <RowDefinition Height="0.2*"/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Grid Grid.Row="0">
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="0.3*"/>
|
|
|
+ <ColumnDefinition/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <Label Content="Поиск" Grid.Column="0"
|
|
|
+ FontFamily="Montserrat Light" FontSize="20"
|
|
|
+ HorizontalAlignment="Right" VerticalAlignment="Center"/>
|
|
|
+ <TextBox Grid.Column="1"
|
|
|
+ Margin="20, 30, 70, 30"/>
|
|
|
+ </Grid>
|
|
|
+ <TextBlock Grid.Row="1"
|
|
|
+ Text="для просмотра подробной информации нажмите дважды на нужную строку"
|
|
|
+ FontFamily="Montserrat Light" FontSize="14"
|
|
|
+ VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
+ <DataGrid Grid.Row="2" AutoGenerateColumns="False">
|
|
|
+ <DataGrid.Columns>
|
|
|
+ <DataGridTextColumn Header="№" Width="Auto"/>
|
|
|
+ <DataGridTextColumn Header="Тип" Width="*"/>
|
|
|
+ <DataGridTextColumn Header="Дата" Width="*"/>
|
|
|
+ <DataGridTextColumn Header="Сотрудник" Width="*"/>
|
|
|
+ </DataGrid.Columns>
|
|
|
+ </DataGrid>
|
|
|
+ <Grid Grid.Row="3">
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition/>
|
|
|
+ <ColumnDefinition/>
|
|
|
+ <ColumnDefinition/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ </Grid>
|
|
|
+ </Grid>
|
|
|
+ </TabItem>
|
|
|
+ <TabItem Header="Добавление" FontFamily="Montserrat Medium" >
|
|
|
+ <Grid Background="#FFE5E5E5"/>
|
|
|
+ </TabItem>
|
|
|
+ </TabControl>
|
|
|
+ </Grid>
|
|
|
+</Window>
|