OrderCreation.xaml 710 B

1234567891011121314151617181920
  1. <Page x:Class="Logistics_application.OrderCreation"
  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:Logistics_application"
  7. mc:Ignorable="d"
  8. d:DesignHeight="400" d:DesignWidth="600"
  9. Title="OrderCreation">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="45"/>
  13. <RowDefinition Height="121*"/>
  14. <RowDefinition Height="45"/>
  15. </Grid.RowDefinitions>
  16. </Grid>
  17. </Page>