V6ProjectSelection.xaml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <Window x:Class="PRSDesktop.V6ProjectSelection"
  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"
  7. xmlns:system="clr-namespace:System;assembly=System.Runtime"
  8. xmlns:wpf="clr-namespace:InABox.WPF;assembly=InABox.Wpf"
  9. xmlns:v6="clr-namespace:PRSDesktop.Integrations.V6"
  10. xmlns:classes="clr-namespace:Comal.Classes;assembly=PRSClasses"
  11. xmlns:grids="clr-namespace:PRSDesktop.Integrations.V6.Grids"
  12. mc:Ignorable="d"
  13. Title="Import from V6" Height="600" Width="1200" WindowStartupLocation="CenterScreen">
  14. <Grid Margin="5">
  15. <Grid.RowDefinitions>
  16. <RowDefinition Height="*"/>
  17. <RowDefinition Height="40"/>
  18. </Grid.RowDefinitions>
  19. <grids:V6ProjectGrid
  20. x:Name="Projects"
  21. OnSelectItem="Projects_OnOnSelectItem"
  22. ShowPrices = "true"/>
  23. <DockPanel
  24. Grid.Row="1"
  25. Margin="0,5,0,0"
  26. LastChildFill="False">
  27. <Button
  28. DockPanel.Dock="Right"
  29. Content="Cancel"
  30. Margin="5,0,0,0"
  31. Width="80"
  32. Click="Cancel_Click"/>
  33. <Button
  34. x:Name="Ok"
  35. DockPanel.Dock="Right"
  36. Margin="5,0,0,0"
  37. Width="80"
  38. Content="OK"
  39. IsEnabled="False"
  40. Click="OK_Click"/>
  41. </DockPanel>
  42. </Grid>
  43. </Window>