InvoiceGrid.xaml 1.2 KB

123456789101112131415161718192021222324
  1. <UserControl x:Class="PRSDesktop.InvoiceGrid"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PRSDesktop"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="450" />
  12. <ColumnDefinition Width="*" />
  13. <ColumnDefinition Width="*" />
  14. </Grid.ColumnDefinitions>
  15. <Grid.RowDefinitions>
  16. <RowDefinition Height="*" />
  17. <RowDefinition Height="2*" />
  18. </Grid.RowDefinitions>
  19. <local:InvoiceListGrid x:Name="Invoices" Grid.Column="0" Grid.Row="0" Grid.RowSpan="2" />
  20. <local:InvoiceLineGrid x:Name="Lines" Grid.Column="1" Grid.Row="0" Grid.ColumnSpan="2" Margin="5,0,0,0" />
  21. <local:InvoicePartsGrid x:Name="Parts" Grid.Column="1" Grid.Row="1" Margin="5,5,0,0" />
  22. <local:InvoiceTimeGrid x:Name="Time" Grid.Column="2" Grid.Row="1" Margin="5,5,0,0" />
  23. </Grid>
  24. </UserControl>