JobRequisitionReserveWindow.xaml 1.2 KB

12345678910111213141516171819202122232425
  1. <wpf:ThemableWindow x:Class="PRSDesktop.JobRequisitionReserveWindow"
  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:PRSDesktop"
  7. xmlns:wpf="clr-namespace:InABox.Wpf;assembly=InABox.Wpf"
  8. mc:Ignorable="d"
  9. Title="Reserve Stock Window" Height="450" Width="800">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="40"/>
  13. <RowDefinition Height="*"/>
  14. <RowDefinition Height="40"/>
  15. </Grid.RowDefinitions>
  16. <Label Grid.Row="0" Margin="5" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontWeight="Bold"
  17. Content="Stock Holdings for Product - Press the green tick column to reserve from a Stock Holding"/>
  18. <Grid Grid.Row="1" x:Name="grid" Margin="5">
  19. </Grid>
  20. <Button x:Name="okBtn" Grid.Row="2" Content="Close" Width="100" Click="okBtn_Click" Margin="668,5,32,5"/>
  21. </Grid>
  22. </wpf:ThemableWindow>