JobDocumentSetFolderSelectionDialog.xaml 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <Window x:Class="PRSDesktop.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:desktop="clr-namespace:PRSDesktop"
  7. mc:Ignorable="d"
  8. Title="Select Folder:" Height="450" Width="800"
  9. Loaded="Window_Loaded">
  10. <Grid Margin="5">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="*"/>
  13. <RowDefinition Height="Auto"/>
  14. </Grid.RowDefinitions>
  15. <desktop:JobDocumentSetFolderTree Grid.Row="0"
  16. x:Name="Folders"
  17. HasAllItems="False"
  18. OnSelectItem="Folders_OnSelectItem"/>
  19. <DockPanel Grid.Row="1" LastChildFill="False">
  20. <Button x:Name="CancelButton" DockPanel.Dock="Right" Content="Cancel"
  21. Margin="0,5,0,0" Padding="5" MinWidth="50"
  22. Click="CancelButton_Click"/>
  23. <Button x:Name="OKButton" DockPanel.Dock="Right" Content="OK"
  24. Margin="0,5,5,0" Padding="5" MinWidth="50"
  25. IsEnabled="False"
  26. Click="OKButton_Click"/>
  27. </DockPanel>
  28. </Grid>
  29. </Window>