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