- 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
30 lines
1.4 KiB
XML
30 lines
1.4 KiB
XML
<Window x:Class="SharepointToolbox.Views.Dialogs.ConfirmBulkOperationDialog"
|
|
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=[bulk.confirm.title]}"
|
|
Width="450" Height="220" WindowStartupLocation="CenterOwner"
|
|
ResizeMode="NoResize">
|
|
<Grid Margin="20">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock x:Name="MessageText" Grid.Row="0"
|
|
TextWrapping="Wrap" FontSize="14"
|
|
VerticalAlignment="Center" />
|
|
|
|
<StackPanel Grid.Row="1" Orientation="Horizontal"
|
|
HorizontalAlignment="Right" Margin="0,20,0,0">
|
|
<Button Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[bulk.confirm.cancel]}"
|
|
Width="100" Margin="0,0,10,0" IsCancel="True"
|
|
Click="Cancel_Click" />
|
|
<Button x:Name="ProceedButton"
|
|
Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[bulk.confirm.proceed]}"
|
|
Width="100" IsDefault="True"
|
|
Click="Proceed_Click" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|