2026-03-27 20:33:24 +01:00
|
|
|
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
Title="Select Settings to Import/Export"
|
|
|
|
|
Width="440"
|
|
|
|
|
SizeToContent="Height"
|
|
|
|
|
MaxHeight="501"
|
|
|
|
|
ResizeMode="NoResize"
|
|
|
|
|
WindowStartupLocation="CenterOwner"
|
|
|
|
|
WindowStyle="None"
|
|
|
|
|
AllowsTransparency="True"
|
|
|
|
|
Background="Transparent"
|
|
|
|
|
Topmost="False"
|
|
|
|
|
ShowInTaskbar="False">
|
|
|
|
|
|
2026-05-08 21:19:52 +02:00
|
|
|
<Border Style="{DynamicResource ModalCardBorderStyle}">
|
2026-03-27 20:33:24 +01:00
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
|
|
<!-- Title Bar -->
|
2026-05-08 21:19:52 +02:00
|
|
|
<Grid Grid.Row="0" x:Name="TitleBar" Style="{DynamicResource ModalTitleBarStyle}">
|
2026-03-27 20:33:24 +01:00
|
|
|
<TextBlock x:Name="TitleText"
|
2026-05-08 21:19:52 +02:00
|
|
|
Style="{DynamicResource ModalTitleTextStyle}"/>
|
2026-03-27 20:33:24 +01:00
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
<!-- Content -->
|
2026-04-26 14:11:29 +02:00
|
|
|
<ScrollViewer Grid.Row="1" VerticalScrollBarVisibility="Auto" Padding="0,0,8,0">
|
2026-05-08 21:19:52 +02:00
|
|
|
<StackPanel x:Name="ContentPanel" Margin="20,4,20,8">
|
2026-04-26 14:11:29 +02:00
|
|
|
<TextBlock x:Name="PromptText"
|
|
|
|
|
TextWrapping="Wrap"
|
|
|
|
|
FontSize="14"
|
|
|
|
|
LineHeight="20"
|
|
|
|
|
Foreground="{DynamicResource FgColor}"
|
|
|
|
|
Margin="0,0,0,14"/>
|
|
|
|
|
<!-- Checkboxes are added dynamically at runtime -->
|
|
|
|
|
<StackPanel x:Name="CheckboxPanel"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</ScrollViewer>
|
2026-03-27 20:33:24 +01:00
|
|
|
|
|
|
|
|
<!-- Button Footer -->
|
2026-05-08 21:19:52 +02:00
|
|
|
<Border Grid.Row="2" Style="{DynamicResource ModalFooterBorderStyle}">
|
|
|
|
|
<UniformGrid Rows="1">
|
2026-03-27 20:33:24 +01:00
|
|
|
<Button x:Name="OkButton"
|
|
|
|
|
Content="OK"
|
2026-05-08 21:19:52 +02:00
|
|
|
Style="{DynamicResource ModalPrimaryStretchedButtonStyle}"/>
|
2026-03-27 20:33:24 +01:00
|
|
|
<Button x:Name="CancelButton"
|
|
|
|
|
Content="Cancel"
|
2026-05-08 21:19:52 +02:00
|
|
|
Style="{DynamicResource ModalSecondaryStretchedButtonStyle}"/>
|
|
|
|
|
</UniformGrid>
|
2026-03-27 20:33:24 +01:00
|
|
|
</Border>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
|
|
|
|
</Window>
|