JobDocumentSetFolderSelectionDialog.xaml 1.5 KB

123456789101112131415161718192021222324252627282930
  1. <Window x:Class="PRSDesktop.Panels.Jobs.JobDocumentSetFolderSelectionDialog"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:PRSDesktop.Panels.Jobs"
  7. xmlns:desktop="clr-namespace:PRSDesktop"
  8. mc:Ignorable="d"
  9. Title="Select Folder:" Height="450" Width="800"
  10. Loaded="Window_Loaded">
  11. <Grid Margin="5">
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="*"/>
  14. <RowDefinition Height="Auto"/>
  15. </Grid.RowDefinitions>
  16. <desktop:JobDocumentSetFolderTree Grid.Row="0"
  17. x:Name="Folders"
  18. HasAllItems="False"
  19. OnSelectItem="Folders_OnSelectItem"/>
  20. <DockPanel Grid.Row="1" LastChildFill="False">
  21. <Button x:Name="CancelButton" DockPanel.Dock="Right" Content="Cancel"
  22. Margin="0,5,0,0" Padding="5" MinWidth="50"
  23. Click="CancelButton_Click"/>
  24. <Button x:Name="OKButton" DockPanel.Dock="Right" Content="OK"
  25. Margin="0,5,5,0" Padding="5" MinWidth="50"
  26. IsEnabled="False"
  27. Click="OKButton_Click"/>
  28. </DockPanel>
  29. </Grid>
  30. </Window>