feat(16-01): add Export Options GroupBox with MergePermissions checkbox to both XAML views

- Added Export Options GroupBox after Scan Options in UserAccessAuditView.xaml
- Added Export Options GroupBox after Display Options in PermissionsView.xaml
- Both checkboxes bind to MergePermissions with localized labels via TranslationSource
This commit is contained in:
Dev
2026-04-09 12:32:08 +02:00
parent ed9f149b82
commit db42047db1
2 changed files with 18 additions and 0 deletions

View File

@@ -83,6 +83,15 @@
</StackPanel>
</GroupBox>
<!-- Export Options GroupBox (Phase 16: Consolidation Toggle) -->
<GroupBox Header="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[audit.grp.export]}"
DockPanel.Dock="Top" Margin="0,0,0,8" Padding="8">
<StackPanel>
<CheckBox Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[chk.merge.permissions]}"
IsChecked="{Binding MergePermissions}" />
</StackPanel>
</GroupBox>
<!-- Action buttons -->
<StackPanel DockPanel.Dock="Top" Margin="0,0,0,4">
<Grid>