V6VariationSelection.xaml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <Window x:Class="PRSDesktop.Integrations.V6.V6VariationSelection"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PRSDesktop.Integrations.V6"
  7. xmlns:grids="clr-namespace:PRSDesktop.Integrations.V6.Grids"
  8. xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
  9. mc:Ignorable="d"
  10. Title="Import From V6" Height="800" Width="800" WindowStartupLocation="CenterScreen"
  11. Loaded="V6GroupSelection_OnLoaded">
  12. <Grid Margin="5">
  13. <Grid.ColumnDefinitions>
  14. <ColumnDefinition Width="*"/>
  15. <ColumnDefinition Width="80"/>
  16. <ColumnDefinition Width="80"/>
  17. </Grid.ColumnDefinitions>
  18. <Grid.RowDefinitions>
  19. <RowDefinition Height="*"/>
  20. <RowDefinition Height="40"/>
  21. </Grid.RowDefinitions>
  22. <grids:V6VariationGrid
  23. x:Name="Variations"
  24. Grid.Row="0"
  25. Grid.Column="0"
  26. Grid.ColumnSpan="3"
  27. OnSelectItem="Variations_OnOnSelectItem"
  28. ShowPrices="true"/>
  29. <Button
  30. x:Name="OK"
  31. Grid.Row="1"
  32. Grid.Column="1"
  33. Content="OK"
  34. Margin="5,5,0,0"
  35. Click="OK_Click"
  36. IsEnabled="False"/>
  37. <Button
  38. x:Name="Cancel"
  39. Grid.Row="1"
  40. Grid.Column="2"
  41. Content="Cancel"
  42. Margin="5,5,0,0"
  43. Click="Cancel_Click"/>
  44. </Grid>
  45. </Window>