Polish config dialog header and center search input text
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
- Überschriftenstil tabübergreifend vereinheitlicht.
|
||||
- "Neues Ticket erstellen" im Tickets-Tab neu positioniert.
|
||||
- Such-Textbox im Such-Tab auf dieselbe Größe wie die darunterliegenden Aktionsbuttons vereinheitlicht.
|
||||
- Vertikale Textausrichtung im Suchfeld korrigiert (eingegebener Text mittig im Feld).
|
||||
- Buttons in `Suche` und `Nützliche Links` in Position und Größe angeglichen.
|
||||
- Suchfeld um einen Inline-Button erweitert, um die Suche zusätzlich per Maus auszulösen.
|
||||
|
||||
@@ -32,6 +33,8 @@
|
||||
- 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.
|
||||
- Aktuelle Programmversion wird zusätzlich sichtbar im Dialoginhalt angezeigt.
|
||||
- Schließen-Button im Dialog oben rechts mit konsistentem Abstand positioniert.
|
||||
|
||||
### Verhalten/Stabilität
|
||||
- Refresh-Prozess asynchronisiert, um UI-Freezes zu vermeiden.
|
||||
|
||||
@@ -55,8 +55,10 @@
|
||||
Value="{DynamicResource inputBorderColor}" />
|
||||
<Setter Property="BorderThickness"
|
||||
Value="1" />
|
||||
<Setter Property="VerticalContentAlignment"
|
||||
Value="Center" />
|
||||
<Setter Property="Padding"
|
||||
Value="8,3" />
|
||||
Value="10,0" />
|
||||
<Setter Property="Template">
|
||||
<Setter.Value>
|
||||
<ControlTemplate TargetType="{x:Type TextBox}">
|
||||
@@ -167,7 +169,7 @@
|
||||
Style="{StaticResource SearchTextBoxStyle}"
|
||||
Width="320"
|
||||
Height="40"
|
||||
Padding="8,3,42,3"
|
||||
Padding="10,0,42,0"
|
||||
FontSize="14"
|
||||
Panel.ZIndex="1110"
|
||||
KeyDown="OnSearchBoxEnter" />
|
||||
|
||||
@@ -171,7 +171,6 @@
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="Auto" />
|
||||
<ColumnDefinition Width="Auto" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<StackPanel Orientation="Vertical"
|
||||
VerticalAlignment="Center">
|
||||
@@ -213,7 +212,10 @@
|
||||
VerticalAlignment="Center"
|
||||
Stretch="Uniform"
|
||||
Source="/Customer Panel;component/Resources/consulting4it-header1.png" />
|
||||
<Button Grid.Column="2"
|
||||
<Button Grid.ColumnSpan="2"
|
||||
HorizontalAlignment="Right"
|
||||
VerticalAlignment="Top"
|
||||
Margin="0,6,6,0"
|
||||
Content="X"
|
||||
FontSize="15"
|
||||
FontWeight="Bold"
|
||||
@@ -296,18 +298,27 @@
|
||||
<ColumnDefinition Width="Auto" />
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<StackPanel Orientation="Horizontal"
|
||||
<StackPanel Orientation="Vertical"
|
||||
VerticalAlignment="Center">
|
||||
<TextBlock x:Name="TxtCopyRight"
|
||||
<StackPanel Orientation="Horizontal"
|
||||
VerticalAlignment="Center">
|
||||
<TextBlock x:Name="TxtCopyRight"
|
||||
Foreground="{DynamicResource navForeground}"
|
||||
VerticalAlignment="Center" />
|
||||
<TextBlock Margin="6,0,0,0"
|
||||
VerticalAlignment="Center">
|
||||
<Hyperlink NavigateUri="http://www.consulting4it.de"
|
||||
RequestNavigate="Hyperlink_RequestNavigate">
|
||||
Consulting4IT GmbH
|
||||
</Hyperlink>
|
||||
</TextBlock>
|
||||
</StackPanel>
|
||||
<TextBlock x:Name="TxtVersion"
|
||||
Margin="0,4,0,0"
|
||||
Foreground="{DynamicResource navForeground}"
|
||||
Opacity="0.72"
|
||||
FontSize="12"
|
||||
VerticalAlignment="Center" />
|
||||
<TextBlock Margin="6,0,0,0"
|
||||
VerticalAlignment="Center">
|
||||
<Hyperlink NavigateUri="http://www.consulting4it.de"
|
||||
RequestNavigate="Hyperlink_RequestNavigate">
|
||||
Consulting4IT GmbH
|
||||
</Hyperlink>
|
||||
</TextBlock>
|
||||
</StackPanel>
|
||||
|
||||
<Button Grid.Column="1"
|
||||
|
||||
@@ -33,6 +33,7 @@ namespace C4IT_CustomerPanel.forms
|
||||
string version = fvi.ProductVersion;
|
||||
|
||||
TxtCopyRight.Text = "© Copyright " + DateTime.Now.Year ;
|
||||
TxtVersion.Text = "Version: " + version;
|
||||
Title = Title + " " + DateTime.Now.Year + " / Version: "+version;
|
||||
conf = config;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user