31 lines
1.5 KiB
XML
31 lines
1.5 KiB
XML
<Window x:Class="SPC.Kiosk.Common.WaitForm"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:SPC.Kiosk.Common"
|
|
xmlns:gif="http://wpfanimatedgif.codeplex.com"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="600" d:DesignWidth="820"
|
|
ShowInTaskbar="False"
|
|
Topmost="True"
|
|
WindowStyle="None"
|
|
WindowState="Maximized"
|
|
AllowsTransparency="True"
|
|
Background="Transparent">
|
|
<Grid x:Name="FormBase" Background="#50000000">
|
|
<Image x:Name="WaitIcon"
|
|
Width="130" Height="130"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
gif:ImageBehavior.AnimatedSource="pack://application:,,,/SPC.Kiosk.Common;component/Resource/ic_alert_ing.gif"
|
|
gif:ImageBehavior.RepeatBehavior="Forever"/>
|
|
<!--<Image x:Name="WaitIcon"
|
|
Width="130" Height="130"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
gif:ImageBehavior.AnimatedSource="{Binding WaitImage, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local:WaitForm}}}"
|
|
gif:ImageBehavior.RepeatBehavior="Forever"/>-->
|
|
</Grid>
|
|
</Window>
|