Add Phoenix remote desktop, action connector, documentation engine, and gamification support. Refactor support-case processing and search/action UI, and update installer assets and dependencies.
110 lines
4.8 KiB
XML
110 lines
4.8 KiB
XML
<Window x:Class="FasdDesktopUi.Pages.SplashScreenView.SplashScreenView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:FasdDesktopUi.Pages.SplashScreenView"
|
|
xmlns:ico="clr-namespace:FasdDesktopUi.Basics.UserControls.AdaptableIcon;assembly=F4SD-AdaptableIcon"
|
|
mc:Ignorable="d"
|
|
Title="First Aid Service Desk"
|
|
Height="240"
|
|
Width="430"
|
|
ResizeMode="NoResize"
|
|
Topmost="True"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowStyle="None"
|
|
IsVisibleChanged="Window_IsVisibleChanged">
|
|
|
|
<Window.Resources>
|
|
<Style x:Key="IconHoverStyle"
|
|
TargetType="ico:AdaptableIcon">
|
|
<Setter Property="Opacity"
|
|
Value="1" />
|
|
<Style.Triggers>
|
|
<Trigger Property="IsMouseOver"
|
|
Value="True">
|
|
<Setter Property="Opacity"
|
|
Value="0.6" />
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
</Window.Resources>
|
|
<Border Padding="12.5 7.5"
|
|
Background="#234B92">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2" HorizontalAlignment="Right">
|
|
<ico:AdaptableIcon x:Name="MinimizeButton"
|
|
PrimaryIconColor="White"
|
|
HorizontalAlignment="Right"
|
|
Cursor="Hand"
|
|
Style="{StaticResource IconHoverStyle}"
|
|
MouseLeftButtonUp="MinimizeButton_MouseLeftButtonUp"
|
|
TouchDown="MinimizeButton_TouchDown"
|
|
SelectedInternIcon="window_minimize"
|
|
>
|
|
</ico:AdaptableIcon>
|
|
<ico:AdaptableIcon x:Name="MaximizeButton"
|
|
PrimaryIconColor="White"
|
|
HorizontalAlignment="Right"
|
|
Cursor="Hand"
|
|
Style="{StaticResource IconHoverStyle}"
|
|
SelectedInternIcon="window_fullscreen"
|
|
MouseLeftButtonUp="F4SDLogo_MouseLeftButtonDown" TouchDown="F4SDLogo_TouchDown"
|
|
/>
|
|
</StackPanel>
|
|
|
|
<ico:AdaptableIcon Grid.Row="0"
|
|
Grid.RowSpan="3"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="3"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
PrimaryIconColor="White"
|
|
IconHeight="220"
|
|
IconWidth="330"
|
|
SelectedInternIcon="f4sd_product_logo"
|
|
MouseLeftButtonDown="F4SDLogo_MouseLeftButtonDown"
|
|
TouchDown="F4SDLogo_TouchDown"
|
|
/>
|
|
|
|
<Image Source="pack://application:,,,/Resources/Consulting4ITWhite.png"
|
|
Width="90"
|
|
Grid.Row="2"
|
|
Grid.Column="2" />
|
|
|
|
<StackPanel Orientation="Horizontal"
|
|
Grid.Row="2"
|
|
Grid.Column="0"
|
|
VerticalAlignment="Bottom">
|
|
<StackPanel.Resources>
|
|
<Style TargetType="TextBlock">
|
|
<Setter Property="Foreground"
|
|
Value="White" />
|
|
<Setter Property="FontFamily"
|
|
Value="Calibri" />
|
|
<Setter Property="Opacity"
|
|
Value="0.8" />
|
|
</Style>
|
|
</StackPanel.Resources>
|
|
|
|
<TextBlock x:Name="StatusTextBlock" />
|
|
<TextBlock x:Name="LoadingDotBlock" />
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
</Border>
|
|
</Window>
|
|
|