| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <Window x:Class="PRSDesktop.Integrations.V6.V6VariationSelection"
- 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.Integrations.V6"
- xmlns:grids="clr-namespace:PRSDesktop.Integrations.V6.Grids"
- xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
- mc:Ignorable="d"
- Title="Import From V6" Height="800" Width="800" WindowStartupLocation="CenterScreen"
- Loaded="V6GroupSelection_OnLoaded">
-
- <Grid Margin="5">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="80"/>
- <ColumnDefinition Width="80"/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="40"/>
- </Grid.RowDefinitions>
-
- <grids:V6VariationGrid
- x:Name="Variations"
- Grid.Row="0"
- Grid.Column="0"
- Grid.ColumnSpan="3"
- OnSelectItem="Variations_OnOnSelectItem"
- ShowPrices="true"/>
-
- <Button
- x:Name="OK"
- Grid.Row="1"
- Grid.Column="1"
- Content="OK"
- Margin="5,5,0,0"
- Click="OK_Click"
- IsEnabled="False"/>
- <Button
- x:Name="Cancel"
- Grid.Row="1"
- Grid.Column="2"
- Content="Cancel"
- Margin="5,5,0,0"
- Click="Cancel_Click"/>
- </Grid>
- </Window>
|