| 1234567891011121314151617181920212223242526272829 |
- <Window x:Class="PRSDesktop.JobDocumentSetFolderSelectionDialog"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:desktop="clr-namespace:PRSDesktop"
- mc:Ignorable="d"
- Title="Select Folder:" Height="450" Width="800"
- Loaded="Window_Loaded">
- <Grid Margin="5">
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <desktop:JobDocumentSetFolderTree Grid.Row="0"
- x:Name="Folders"
- HasAllItems="False"
- OnSelectItem="Folders_OnSelectItem"/>
- <DockPanel Grid.Row="1" LastChildFill="False">
- <Button x:Name="CancelButton" DockPanel.Dock="Right" Content="Cancel"
- Margin="0,5,0,0" Padding="5" MinWidth="50"
- Click="CancelButton_Click"/>
- <Button x:Name="OKButton" DockPanel.Dock="Right" Content="OK"
- Margin="0,5,5,0" Padding="5" MinWidth="50"
- IsEnabled="False"
- Click="OKButton_Click"/>
- </DockPanel>
- </Grid>
- </Window>
|