finish login window styling and added xaml event triggers to handle ui method calls

This commit is contained in:
Rene Schwarz
2021-04-03 05:10:47 +02:00
parent 1ea42f8660
commit 077f622115
38 changed files with 405 additions and 124 deletions

View File

@@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Server_Dashboard"
StartupUri="MainWindow.xaml">
StartupUri="LoginWindow.xaml">
<Application.Resources>
<RadialGradientBrush x:Key="LoginBackground" GradientOrigin="0.5, 0.5" Center="0.5, 0.5">
@@ -51,11 +51,6 @@
<Setter Property="HorizontalAlignment" Value="Left"/>
</Style>
<Style x:Key="LoginFormsInputBorder" TargetType="{x:Type Border}">
<Setter Property="BorderBrush" Value="#1B1C20"/>
<Setter Property="BorderThickness" Value="1"/>
</Style>
<Style x:Key="LoginFormInput" TargetType="{x:Type TextBox}">
<Setter Property="CaretBrush" Value="#BBBBBB"/>
<Setter Property="VerticalContentAlignment" Value="Center"/>
@@ -124,6 +119,27 @@
<Setter Property="FontSize" Value="40"/>
<Setter Property="TextAlignment" Value="Center"/>
</Style>
<Style x:Key="CloseButton" TargetType="{x:Type Button}">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="Foreground" Value="#BBBBBB"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="FontSize" Value="20"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Border x:Name="Border" CornerRadius="3" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}">
<TextBlock TextAlignment="Center" Padding="0" TextWrapping="Wrap" Text="{TemplateBinding Content}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="Red"/>
<Setter Property="Foreground" Value="Black"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Application.Resources>
</Application>