Add localized info hint in configuration dialog header

This commit is contained in:
Meik
2026-03-05 14:07:18 +01:00
parent 964ed2f018
commit 9020cdb3b1
4 changed files with 29 additions and 0 deletions

View File

@@ -31,6 +31,7 @@
### Dialog "Konfiguration anzeigen"
- Optisch an Haupt-GUI angeglichen und vergrößert, um abgeschnittene Inhalte zu vermeiden.
- Frameless-Optik mit integriertem Schließen-Mechanismus umgesetzt.
- Hinweisbox mit zusätzlicher Konfigurationsinformation im Headerbereich ergänzt.
### Verhalten/Stabilität
- Refresh-Prozess asynchronisiert, um UI-Freezes zu vermeiden.

View File

@@ -166,6 +166,9 @@
<data name="config" xml:space="preserve">
<value>Konfiguration anzeigen</value>
</data>
<data name="configInfoHint" xml:space="preserve">
<value>Die hier angezeigten Werte stammen aus der aktuell geladenen Web-Konfiguration.</value>
</data>
<data name="dnd" xml:space="preserve">
<value>Präsentationsmodus</value>
</data>

View File

@@ -190,6 +190,9 @@
<data name="config" xml:space="preserve">
<value>Show configuration</value>
</data>
<data name="configInfoHint" xml:space="preserve">
<value>The values shown here are loaded from the current web configuration.</value>
</data>
<data name="dnd" xml:space="preserve">
<value>Presentation mode</value>
</data>

View File

@@ -183,6 +183,28 @@
Foreground="{DynamicResource navForeground}"
Opacity="0.72"
Margin="0,4,0,0" />
<Border Margin="0,10,0,0"
Padding="10,6"
Background="{DynamicResource inputBackgroundColor}"
BorderBrush="{DynamicResource inputBorderColor}"
BorderThickness="1"
CornerRadius="8">
<StackPanel Orientation="Horizontal"
VerticalAlignment="Center">
<Image Source="{DynamicResource appbar_information}"
Width="14"
Height="14"
Margin="0,0,8,0"
Tag="MAINICO"
VerticalAlignment="Center" />
<TextBlock Text="{x:Static resx:Resources.configInfoHint}"
Foreground="{DynamicResource navForeground}"
FontSize="12"
Opacity="0.8"
TextWrapping="Wrap"
VerticalAlignment="Center" />
</StackPanel>
</Border>
</StackPanel>
<Image Grid.Column="1"
Width="150"