| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <Window x:Class="PRSDesktop.ReservationManagementSubstitutionWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PRSDesktop"
- mc:Ignorable="d"
- Title="Substitute Item"
- SizeToContent="Height"
- ResizeMode="CanResize"
- MinHeight="400"
- Width="600"
- WindowStartupLocation="CenterScreen">
- <Grid Margin="5">
-
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="40"/>
- </Grid.RowDefinitions>
-
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="80"/>
- <ColumnDefinition Width="80"/>
- </Grid.ColumnDefinitions>
-
- <local:ReservationManagementSubstitutionGrid
- x:Name="substitutions"
- Grid.ColumnSpan="3"
- OnSelectItem="Substitutions_OnOnSelectItem"/>
-
- <DockPanel
- Grid.Row="1"
- Grid.Column="0"
- Margin="0,5,0,0">
- <CheckBox
- x:Name="SubstitutionFreeStock"
- DockPanel.Dock="Left"
- Content="General Stock Only?"
- VerticalAlignment="Center"
- Checked="SubstitutionFreeStock_Changed"
- Unchecked="SubstitutionFreeStock_Changed" />
- <CheckBox
- x:Name="SubstitutionUpdateStyle"
- DockPanel.Dock="Left"
- Margin="10,0,0,0"
- Content="Change Item Style?"
- VerticalAlignment="Center"
- Checked="SubstitutionUpdateStyle_Changed"
- Unchecked="SubstitutionUpdateStyle_Changed"/>
- </DockPanel>
-
- <Button
- x:Name="ok"
- Grid.Row="1"
- Grid.Column="1"
- Margin="5,5,0,0"
- Content="OK"
- IsEnabled="False"
- Click="OK_Click"/>
-
- <Button
- x:Name="cancel"
- Grid.Row="1"
- Grid.Column="2"
- Margin="5,5,0,0"
- Content="Cancel"
- Click="Cancel_Click"/>
-
- </Grid>
- </Window>
|