Polish config dialog header and center search input text
This commit is contained in:
@@ -16,6 +16,7 @@
|
|||||||
- Überschriftenstil tabübergreifend vereinheitlicht.
|
- Überschriftenstil tabübergreifend vereinheitlicht.
|
||||||
- "Neues Ticket erstellen" im Tickets-Tab neu positioniert.
|
- "Neues Ticket erstellen" im Tickets-Tab neu positioniert.
|
||||||
- Such-Textbox im Such-Tab auf dieselbe Größe wie die darunterliegenden Aktionsbuttons vereinheitlicht.
|
- 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.
|
- 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.
|
- 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.
|
- 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.
|
- 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
|
### Verhalten/Stabilität
|
||||||
- Refresh-Prozess asynchronisiert, um UI-Freezes zu vermeiden.
|
- Refresh-Prozess asynchronisiert, um UI-Freezes zu vermeiden.
|
||||||
|
|||||||
@@ -55,8 +55,10 @@
|
|||||||
Value="{DynamicResource inputBorderColor}" />
|
Value="{DynamicResource inputBorderColor}" />
|
||||||
<Setter Property="BorderThickness"
|
<Setter Property="BorderThickness"
|
||||||
Value="1" />
|
Value="1" />
|
||||||
|
<Setter Property="VerticalContentAlignment"
|
||||||
|
Value="Center" />
|
||||||
<Setter Property="Padding"
|
<Setter Property="Padding"
|
||||||
Value="8,3" />
|
Value="10,0" />
|
||||||
<Setter Property="Template">
|
<Setter Property="Template">
|
||||||
<Setter.Value>
|
<Setter.Value>
|
||||||
<ControlTemplate TargetType="{x:Type TextBox}">
|
<ControlTemplate TargetType="{x:Type TextBox}">
|
||||||
@@ -167,7 +169,7 @@
|
|||||||
Style="{StaticResource SearchTextBoxStyle}"
|
Style="{StaticResource SearchTextBoxStyle}"
|
||||||
Width="320"
|
Width="320"
|
||||||
Height="40"
|
Height="40"
|
||||||
Padding="8,3,42,3"
|
Padding="10,0,42,0"
|
||||||
FontSize="14"
|
FontSize="14"
|
||||||
Panel.ZIndex="1110"
|
Panel.ZIndex="1110"
|
||||||
KeyDown="OnSearchBoxEnter" />
|
KeyDown="OnSearchBoxEnter" />
|
||||||
|
|||||||
@@ -171,7 +171,6 @@
|
|||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="*" />
|
<ColumnDefinition Width="*" />
|
||||||
<ColumnDefinition Width="Auto" />
|
<ColumnDefinition Width="Auto" />
|
||||||
<ColumnDefinition Width="Auto" />
|
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<StackPanel Orientation="Vertical"
|
<StackPanel Orientation="Vertical"
|
||||||
VerticalAlignment="Center">
|
VerticalAlignment="Center">
|
||||||
@@ -213,7 +212,10 @@
|
|||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
Stretch="Uniform"
|
Stretch="Uniform"
|
||||||
Source="/Customer Panel;component/Resources/consulting4it-header1.png" />
|
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"
|
Content="X"
|
||||||
FontSize="15"
|
FontSize="15"
|
||||||
FontWeight="Bold"
|
FontWeight="Bold"
|
||||||
@@ -296,18 +298,27 @@
|
|||||||
<ColumnDefinition Width="Auto" />
|
<ColumnDefinition Width="Auto" />
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
|
|
||||||
<StackPanel Orientation="Horizontal"
|
<StackPanel Orientation="Vertical"
|
||||||
VerticalAlignment="Center">
|
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}"
|
Foreground="{DynamicResource navForeground}"
|
||||||
|
Opacity="0.72"
|
||||||
|
FontSize="12"
|
||||||
VerticalAlignment="Center" />
|
VerticalAlignment="Center" />
|
||||||
<TextBlock Margin="6,0,0,0"
|
|
||||||
VerticalAlignment="Center">
|
|
||||||
<Hyperlink NavigateUri="http://www.consulting4it.de"
|
|
||||||
RequestNavigate="Hyperlink_RequestNavigate">
|
|
||||||
Consulting4IT GmbH
|
|
||||||
</Hyperlink>
|
|
||||||
</TextBlock>
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
<Button Grid.Column="1"
|
<Button Grid.Column="1"
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ namespace C4IT_CustomerPanel.forms
|
|||||||
string version = fvi.ProductVersion;
|
string version = fvi.ProductVersion;
|
||||||
|
|
||||||
TxtCopyRight.Text = "© Copyright " + DateTime.Now.Year ;
|
TxtCopyRight.Text = "© Copyright " + DateTime.Now.Year ;
|
||||||
|
TxtVersion.Text = "Version: " + version;
|
||||||
Title = Title + " " + DateTime.Now.Year + " / Version: "+version;
|
Title = Title + " " + DateTime.Now.Year + " / Version: "+version;
|
||||||
conf = config;
|
conf = config;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user