Add localized info hint in configuration dialog header
This commit is contained in:
@@ -31,6 +31,7 @@
|
|||||||
### Dialog "Konfiguration anzeigen"
|
### Dialog "Konfiguration anzeigen"
|
||||||
- Optisch an Haupt-GUI angeglichen und vergrößert, um abgeschnittene Inhalte zu vermeiden.
|
- Optisch an Haupt-GUI angeglichen und vergrößert, um abgeschnittene Inhalte zu vermeiden.
|
||||||
- Frameless-Optik mit integriertem Schließen-Mechanismus umgesetzt.
|
- Frameless-Optik mit integriertem Schließen-Mechanismus umgesetzt.
|
||||||
|
- Hinweisbox mit zusätzlicher Konfigurationsinformation im Headerbereich ergänzt.
|
||||||
|
|
||||||
### Verhalten/Stabilität
|
### Verhalten/Stabilität
|
||||||
- Refresh-Prozess asynchronisiert, um UI-Freezes zu vermeiden.
|
- Refresh-Prozess asynchronisiert, um UI-Freezes zu vermeiden.
|
||||||
|
|||||||
@@ -166,6 +166,9 @@
|
|||||||
<data name="config" xml:space="preserve">
|
<data name="config" xml:space="preserve">
|
||||||
<value>Konfiguration anzeigen</value>
|
<value>Konfiguration anzeigen</value>
|
||||||
</data>
|
</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">
|
<data name="dnd" xml:space="preserve">
|
||||||
<value>Präsentationsmodus</value>
|
<value>Präsentationsmodus</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -190,6 +190,9 @@
|
|||||||
<data name="config" xml:space="preserve">
|
<data name="config" xml:space="preserve">
|
||||||
<value>Show configuration</value>
|
<value>Show configuration</value>
|
||||||
</data>
|
</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">
|
<data name="dnd" xml:space="preserve">
|
||||||
<value>Presentation mode</value>
|
<value>Presentation mode</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -183,6 +183,28 @@
|
|||||||
Foreground="{DynamicResource navForeground}"
|
Foreground="{DynamicResource navForeground}"
|
||||||
Opacity="0.72"
|
Opacity="0.72"
|
||||||
Margin="0,4,0,0" />
|
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>
|
</StackPanel>
|
||||||
<Image Grid.Column="1"
|
<Image Grid.Column="1"
|
||||||
Width="150"
|
Width="150"
|
||||||
|
|||||||
Reference in New Issue
Block a user