Align search and custom-links button layout
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.
|
||||||
|
- Buttons in `Suche` und `Nützliche Links` in Position und Größe angeglichen.
|
||||||
|
|
||||||
### Information-Tab
|
### Information-Tab
|
||||||
- Label-/Icon-Ausrichtung und vertikale Abstände überarbeitet.
|
- Label-/Icon-Ausrichtung und vertikale Abstände überarbeitet.
|
||||||
|
|||||||
@@ -1159,7 +1159,7 @@ namespace C4IT_CustomerPanel
|
|||||||
btn.Height = 40;
|
btn.Height = 40;
|
||||||
btn.FontSize = 16;
|
btn.FontSize = 16;
|
||||||
btn.Style = FindResource("PrimaryActionButtonStyle") as Style;
|
btn.Style = FindResource("PrimaryActionButtonStyle") as Style;
|
||||||
btn.Margin = new Thickness(15, 10, 0, 0);
|
btn.Margin = new Thickness(15, t == 0 ? 0 : 10, 0, 0);
|
||||||
btn.PreviewMouseDown += OnCustomButtonClick;
|
btn.PreviewMouseDown += OnCustomButtonClick;
|
||||||
CustomLinksCtrl.AddLink(btn);
|
CustomLinksCtrl.AddLink(btn);
|
||||||
t++;
|
t++;
|
||||||
|
|||||||
@@ -39,11 +39,11 @@
|
|||||||
Padding="0"
|
Padding="0"
|
||||||
Canvas.Left="40"
|
Canvas.Left="40"
|
||||||
Content="{x:Static resx:Resources.CustomLink}" />
|
Content="{x:Static resx:Resources.CustomLink}" />
|
||||||
<ScrollViewer Canvas.Top="56"
|
<ScrollViewer Canvas.Top="120"
|
||||||
Canvas.Left="0"
|
Canvas.Left="0"
|
||||||
Width="{Binding ActualWidth, ElementName=CanvasLinks, Mode=OneWay}"
|
Width="{Binding ActualWidth, ElementName=CanvasLinks, Mode=OneWay}"
|
||||||
MinHeight="60"
|
MinHeight="60"
|
||||||
MaxHeight="494"
|
MaxHeight="430"
|
||||||
HorizontalScrollBarVisibility="Disabled"
|
HorizontalScrollBarVisibility="Disabled"
|
||||||
VerticalScrollBarVisibility="Auto">
|
VerticalScrollBarVisibility="Auto">
|
||||||
<StackPanel x:Name="CustomLinkPanel"
|
<StackPanel x:Name="CustomLinkPanel"
|
||||||
|
|||||||
Reference in New Issue
Block a user