97 lines
5.1 KiB
XML
97 lines
5.1 KiB
XML
<Window x:Class="SPC.Kiosk.Common.PopupMessage"
|
|
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"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="540" d:DesignWidth="800"
|
|
ShowInTaskbar="False"
|
|
Topmost="True"
|
|
WindowStyle="None"
|
|
WindowState="Normal"
|
|
AllowsTransparency="True"
|
|
Background="Transparent">
|
|
<Grid x:Name="FormBase" Background="#C0000000">
|
|
<Grid x:Name="FrameBase" Width="800" Height="540">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="80"/>
|
|
</Grid.RowDefinitions>
|
|
<Border Grid.Row="0" Grid.RowSpan="2" CornerRadius="0" Background="White" />
|
|
<StackPanel Orientation="Vertical" VerticalAlignment="Center" Grid.Row="0">
|
|
<local:MutiLanguageTextBlock x:Name="Message1"
|
|
Grid.Row="1"
|
|
Width="720"
|
|
Text="메세지1"
|
|
VerticalAlignment="Center"
|
|
Foreground="Black"
|
|
FontSize="36"
|
|
FontWeight="Bold"
|
|
FontFamily="NanumSquare"
|
|
TextAlignment="Center"
|
|
TextWrapping="Wrap"
|
|
Margin="0,0,0,0" />
|
|
<local:MutiLanguageTextBlock x:Name="Message2"
|
|
Grid.Row="2"
|
|
Width="720"
|
|
VerticalAlignment="Top"
|
|
Foreground="#1469cc"
|
|
FontSize="30"
|
|
FontWeight="Normal"
|
|
TextWrapping="Wrap"
|
|
FontFamily="NanumSquare"
|
|
TextAlignment="Center"
|
|
Margin="0,50,0,0"/>
|
|
</StackPanel>
|
|
<Grid Grid.Row="1">
|
|
<StackPanel x:Name="ButtonStack" Grid.Row="1"
|
|
Height="80"
|
|
Orientation="Horizontal">
|
|
<local:AnimationButton x:Name="Cancel_Button"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Left"
|
|
Width="200"
|
|
Height="80"
|
|
NormalBrush="#333333"
|
|
BrushStretch = "Fill"
|
|
ClickAnimationType="TextSizeDown"
|
|
TextFontFamily="NanumSquare"
|
|
TextVisible ="Visible"
|
|
TextFontSize ="30"
|
|
TextForeground = "White"
|
|
TextFontWeight ="Bold"/>
|
|
<local:AnimationButton x:Name="No_Button"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Left"
|
|
Width="200"
|
|
Height="80"
|
|
NormalBrush="#333333"
|
|
BrushStretch = "Fill"
|
|
ClickAnimationType="TextSizeDown"
|
|
TextFontFamily="NanumSquare"
|
|
TextVisible ="Visible"
|
|
TextFontSize ="30"
|
|
TextForeground = "White"
|
|
TextFontWeight ="Bold"/>
|
|
<local:AnimationButton x:Name="Yes_Button"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Right"
|
|
Width="200"
|
|
Height="80"
|
|
NormalBrush="#1469cc"
|
|
BrushStretch = "Fill"
|
|
DisableBrush="#aaaaaa"
|
|
ClickAnimationType="TextSizeUp"
|
|
TextVisible ="Visible"
|
|
TextFontSize ="30"
|
|
TextForeground = "White"
|
|
DisableForeground="#dddddd"
|
|
TextFontWeight ="Bold"/>
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|