123456789101112131415161718192021222324 |
- <wpf:ThemableWindow x:Class="PRSDesktop.RequisitionItemHoldingSelector"
- 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="RequisitionItemHoldingSelector" Height="450" Width="800">
- <Grid Margin="5">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="80" />
- <ColumnDefinition Width="80" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="*" />
- <RowDefinition Height="40" />
- </Grid.RowDefinitions>
- <local:RequisitionItemHoldingGrid x:Name="Items" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="3" />
- <Button x:Name="OK" Grid.Row="1" Grid.Column="1" Margin="5,5,0,0" Content="OK" Click="OK_Click" />
- <Button x:Name="Cancel" Grid.Row="1" Grid.Column="2" Margin="5,5,0,0" Content="Cancel" Click="Cancel_Click" />
- </Grid>
- </wpf:ThemableWindow>
|