- Add 80+ Phase 4 EN/FR localization keys to Strings.resx and Strings.fr.resx (tabs, transfer, bulkmembers, bulksites, folderstruct, templates, bulk-shared, folderbrowser) - Add ResourceManager property accessors for all new keys to Strings.Designer.cs - Create ConfirmBulkOperationDialog (XAML + code-behind) with Proceed/Cancel buttons - Create FolderBrowserDialog (XAML + code-behind) with lazy-loading TreeView of SharePoint libraries/folders - Bundle bulk_add_members.csv, bulk_create_sites.csv, folder_structure.csv as EmbeddedResource in csproj
29 lines
1.5 KiB
XML
29 lines
1.5 KiB
XML
<Window x:Class="SharepointToolbox.Views.Dialogs.FolderBrowserDialog"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:loc="clr-namespace:SharepointToolbox.Localization"
|
|
Title="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[folderbrowser.title]}"
|
|
Width="400" Height="500" WindowStartupLocation="CenterOwner"
|
|
ResizeMode="CanResizeWithGrip">
|
|
<DockPanel Margin="10">
|
|
<!-- Status -->
|
|
<TextBlock x:Name="StatusText" DockPanel.Dock="Top" Margin="0,0,0,10"
|
|
Text="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[folderbrowser.loading]}" />
|
|
|
|
<!-- Buttons -->
|
|
<StackPanel DockPanel.Dock="Bottom" Orientation="Horizontal"
|
|
HorizontalAlignment="Right" Margin="0,10,0,0">
|
|
<Button Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[folderbrowser.cancel]}"
|
|
Width="80" Margin="0,0,10,0" IsCancel="True"
|
|
Click="Cancel_Click" />
|
|
<Button x:Name="SelectButton"
|
|
Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[folderbrowser.select]}"
|
|
Width="80" IsDefault="True" IsEnabled="False"
|
|
Click="Select_Click" />
|
|
</StackPanel>
|
|
|
|
<!-- Tree -->
|
|
<TreeView x:Name="FolderTree" SelectedItemChanged="FolderTree_SelectedItemChanged" />
|
|
</DockPanel>
|
|
</Window>
|