1156 lines
78 KiB
XML
1156 lines
78 KiB
XML
<Window x:Class="SPC.Kiosk.Popup.PaymentsEnd"
|
|
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.Popup"
|
|
xmlns:uc ="clr-namespace:SPC.Kiosk.Common;assembly=SPC.Kiosk.Common"
|
|
xmlns:vm ="clr-namespace:SPC.Kiosk.Popup.ViewModel;assembly=SPC.Kiosk.Popup.ViewModel"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="1010" d:DesignWidth="1300"
|
|
ShowInTaskbar="False"
|
|
Topmost="True"
|
|
WindowStyle="None"
|
|
WindowState="Normal"
|
|
AllowsTransparency="True"
|
|
Background="Transparent">
|
|
<Window.Resources>
|
|
<uc:BoolToUnvisibility x:Key="ToUnvisibility" />
|
|
<uc:BoolToVisibility x:Key="ToVisibility" />
|
|
<uc:NumericToString x:Key="ToString" />
|
|
<uc:CodeToMultiLanguage x:Key="ToMultiLanguage"/>
|
|
<uc:PointSavingAndStoreAgreeViewToVisibility x:Key="PointSavingAndStoreAgreeViewToVisibility" />
|
|
</Window.Resources>
|
|
<Window.DataContext>
|
|
<vm:VmPaymentsEnd/>
|
|
</Window.DataContext>
|
|
<Window.InputBindings>
|
|
<KeyBinding Modifiers="Alt" Key="F4" Command="{Binding ToExecuteNothing}" />
|
|
</Window.InputBindings>
|
|
<Grid x:Name="FormBase" Background="#C0000000">
|
|
<Grid x:Name="FrameBase" Width="1300" Height="1010" Background="White">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="80"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid x:Name="FrameData" Grid.Row="0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="40"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="40"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="110"/>
|
|
<RowDefinition Height="60"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="80"/>
|
|
</Grid.RowDefinitions>
|
|
<Border Grid.Column="1" Grid.Row="1" BorderBrush="#dddddd" BorderThickness="0,0,0,1"/>
|
|
<uc:MutiLanguageTextBlock x:Name="Header"
|
|
Grid.Row="0"
|
|
Grid.Column="1"
|
|
VerticalAlignment="Top"
|
|
Foreground="#1469cc"
|
|
FontSize="44"
|
|
FontWeight="ExtraBold"
|
|
Text="현금영수증"
|
|
TextAlignment="Left"
|
|
FontFamily="NanumSquare"
|
|
Margin="0,44,0,0"
|
|
MultiLanguage="{Binding HeaderText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"/>
|
|
<uc:MutiLanguageTextBlock x:Name="ScanGuid"
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
VerticalAlignment="Top"
|
|
Foreground="#888888"
|
|
FontSize="28"
|
|
FontWeight="Bold"
|
|
Text="인증 번호를 입력하세요."
|
|
TextAlignment="Left"
|
|
FontFamily="NanumSquare"
|
|
Margin="0,0,0,0"
|
|
MultiLanguage="{Binding ScanGuidText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"/>
|
|
|
|
<Grid x:Name="CashReceipt" Grid.Column="1" Grid.Row="2"
|
|
Visibility="{Binding CashReceiptVisible,Converter={StaticResource ToVisibility}}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="60"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="82"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="706"/>
|
|
<ColumnDefinition Width="514"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Border Grid.Column="1" Grid.Row="1" Grid.RowSpan="3" BorderBrush="#dddddd" BorderThickness="1,0,0,0" />
|
|
<Grid Grid.Column="0" Grid.Row="0" Grid.RowSpan="4">
|
|
<uc:AnimationButton x:Name="CashReceipTitileImage" Grid.Row="0"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Center"
|
|
Width="345"
|
|
Height="210"
|
|
NormalBrush="{Binding CashReceipTitileImage}"
|
|
BrushStretch = "Fill"
|
|
TextVisible ="Collapsed"
|
|
Margin="0,300,43,0"/>
|
|
</Grid>
|
|
<Grid Grid.Column="0" Grid.Row="0" Grid.RowSpan="4">
|
|
<Grid Margin="51,96,91,0" Width ="564" Height="100"
|
|
VerticalAlignment="Top">
|
|
<Grid.Background>
|
|
<ImageBrush ImageSource="{Binding CashReceipButtonBackground}"/>
|
|
</Grid.Background>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="278"/>
|
|
<ColumnDefinition Width="278"/>
|
|
</Grid.ColumnDefinitions>
|
|
<uc:AnimationButton x:Name="CashTypePerson"
|
|
Grid.Column="0"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Left"
|
|
Width="210"
|
|
Height="60"
|
|
NormalBrush="{Binding CashTypePersonButtonNormal}"
|
|
DisableBrush="{Binding CashTypePersonButtonDisable}"
|
|
ClickAnimationType="SizeDown"
|
|
BrushStretch = "Fill"
|
|
TextVisible="Visible"
|
|
Text="개인"
|
|
TextFontFamily="NanumSquare"
|
|
TextForeground="#808080"
|
|
TextFontSize="30"
|
|
TextFontWeight="Bold"
|
|
DisableForeground="#1469cc"
|
|
DisableFontSize="30"
|
|
DisableWeight="ExtraBold"
|
|
TextHorizontalAlignment="Left"
|
|
TextAlignment="Left"
|
|
TextMargin="54,0,0,0"
|
|
Margin="50,20,0,0"
|
|
Enabled="{Binding CashTypePersonEnable}"
|
|
LanguageText="{Binding CashTypePersonText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Command="{Binding CashTypePersonCommand}"/>
|
|
<uc:AnimationButton x:Name="CashTypeCompany"
|
|
Grid.Column="1"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Left"
|
|
Width="210"
|
|
Height="60"
|
|
NormalBrush="{Binding CashTypeCompanyButtonNormal}"
|
|
DisableBrush="{Binding CashTypeCompanyButtonDisable}"
|
|
ClickAnimationType="SizeDown"
|
|
BrushStretch = "Fill"
|
|
TextVisible="Visible"
|
|
Text="사업자"
|
|
TextFontFamily="NanumSquare"
|
|
TextForeground="#808080"
|
|
TextFontSize="30"
|
|
TextFontWeight="Bold"
|
|
DisableForeground="#1469cc"
|
|
DisableFontSize="30"
|
|
DisableWeight="ExtraBold"
|
|
TextHorizontalAlignment="Left"
|
|
TextAlignment="Left"
|
|
TextMargin="54,0,0,0"
|
|
Margin="18,20,0,0"
|
|
Enabled="{Binding CashTypeCompanyEnable}"
|
|
LanguageText="{Binding CashTypeCompanyText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Command="{Binding CashTypeCompanyCommand}"/>
|
|
</Grid>
|
|
</Grid>
|
|
<uc:MutiLanguageTextBlock x:Name="NumPadInput"
|
|
Grid.Column="2" Grid.Row="2"
|
|
VerticalAlignment="Top"
|
|
Text="{Binding Path=ShowText ,ElementName=NumPad}"
|
|
FontFamily="NanumSquare"
|
|
Foreground="#1469cc"
|
|
FontSize="35"
|
|
FontWeight="Bold"
|
|
TextAlignment="Center"
|
|
Margin="40,16,0,0"
|
|
Visibility="{Binding NumPadInputVisible,Converter={StaticResource ToVisibility}}"
|
|
/>
|
|
<uc:MutiLanguageTextBlock x:Name="NumPadGuide"
|
|
Grid.Column="2" Grid.Row="2"
|
|
VerticalAlignment="Top"
|
|
Text="{Binding Path=ShowText ,ElementName=NumPad}"
|
|
FontFamily="NanumSquare"
|
|
Foreground="#555555"
|
|
FontSize="24"
|
|
FontWeight="Normal"
|
|
TextAlignment="Center"
|
|
Margin="40,21,0,0"
|
|
Visibility="{Binding NumPadGuideVisible,Converter={StaticResource ToVisibility}}"
|
|
/>
|
|
<local:PBNumericPad x:Name="NumPad"
|
|
Grid.Column="2"
|
|
Grid.Row="3"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Left"
|
|
Width="420"
|
|
Height="472"
|
|
Formated="{Binding NumPadFormated}"
|
|
CurrencyFormat=""
|
|
IsPassWord="False"
|
|
MaxLength="{Binding NumPadMaxLength}"
|
|
GuidText="{Binding NumPadGuidText}"
|
|
InputText="{Binding InputNumber,Mode=TwoWay}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Margin="67,0,0,0"
|
|
/>
|
|
</Grid>
|
|
|
|
<Grid x:Name="Processing" Grid.Column="1" Grid.Row="2"
|
|
Visibility="{Binding ProcessingVisible,Converter={StaticResource ToVisibility}}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="170"/>
|
|
<RowDefinition Height="130"/>
|
|
<RowDefinition Height="75"/>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="135"/>
|
|
</Grid.RowDefinitions>
|
|
<uc:MediaPlayer x:Name="ProcessingImage"
|
|
Grid.Row="1"
|
|
HorizontalAlignment="Center"
|
|
Width="130"
|
|
Height="130"
|
|
RepeatMedia="True"
|
|
MediaFile="{Binding ProcessingGIF}"/>
|
|
<uc:MutiLanguageTextBlock x:Name="Message1"
|
|
Grid.Row="3"
|
|
Text="처리중..."
|
|
VerticalAlignment="Top"
|
|
Foreground="Black"
|
|
FontSize="42"
|
|
FontWeight="Bold"
|
|
TextAlignment="Center"
|
|
FontFamily="NanumSquare"
|
|
MultiLanguage="{Binding ProcessingMessageText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
<uc:MutiLanguageTextBlock x:Name="ProcessingGuide"
|
|
Grid.Row="4"
|
|
Text="화면 상태가 지속되면 직원을 호출 하세요."
|
|
VerticalAlignment="Bottom"
|
|
Foreground="#1469cc"
|
|
FontSize="30"
|
|
FontWeight="Normal"
|
|
TextAlignment="Center"
|
|
FontFamily="NanumSquare"
|
|
MultiLanguage="{Binding ProcessingGuide}"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
</Grid>
|
|
|
|
<Grid x:Name="BellOrNotifyTalk" Grid.Column="1" Grid.Row="2"
|
|
Visibility="{Binding BellOrNotifyTalkVisible,Converter={StaticResource ToVisibility}}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="60"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="82"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="706"/>
|
|
<ColumnDefinition Width="514"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Border Grid.Column="1" Grid.Row="1" Grid.RowSpan="3" BorderBrush="#dddddd" BorderThickness="1,0,0,0" />
|
|
<Grid Grid.Column="0" Grid.Row="0" Grid.RowSpan="4">
|
|
<StackPanel Orientation="Vertical">
|
|
<Grid Height="300" Visibility="{Binding BellAnsTalkToggleVisible,Converter={StaticResource ToVisibility}}"/>
|
|
<Grid Height="200" Visibility="{Binding BellAnsTalkToggleVisible,Converter={StaticResource ToUnvisibility}}"/>
|
|
<uc:AnimationButton x:Name="BellOrNotifyTalkTitileImage" Grid.Row="0"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Center"
|
|
Width="345"
|
|
Height="210"
|
|
NormalBrush="{Binding BellOrNotifyTalkTitileImage}"
|
|
BrushStretch = "Fill"
|
|
TextVisible ="Collapsed"
|
|
Margin="0,0,43,0"/>
|
|
<uc:MutiLanguageTextBlock x:Name="BellOrNotifyTalkText"
|
|
Text="정상처리 되었습니다."
|
|
VerticalAlignment="Top"
|
|
Foreground="Black"
|
|
FontSize="24"
|
|
FontWeight="Bold"
|
|
FontFamily="NanumSquare"
|
|
TextAlignment="Center"
|
|
LineHeight="34"
|
|
Margin="0,50,43,0"
|
|
MultiLanguage="{Binding BellOrNotifyTalkText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
</StackPanel>
|
|
</Grid>
|
|
<Grid Grid.Column="0" Grid.Row="0" Grid.RowSpan="4">
|
|
<Grid Margin="51,96,91,0" Width ="564" Height="100"
|
|
VerticalAlignment="Top"
|
|
Visibility="{Binding BellAnsTalkToggleVisible,Converter={StaticResource ToVisibility}}">
|
|
<Grid.Background>
|
|
<ImageBrush ImageSource="{Binding CashReceipButtonBackground}"/>
|
|
</Grid.Background>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="278"/>
|
|
<ColumnDefinition Width="278"/>
|
|
</Grid.ColumnDefinitions>
|
|
<uc:AnimationButton x:Name="BellButton"
|
|
Grid.Column="0"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Left"
|
|
Width="210"
|
|
Height="60"
|
|
NormalBrush="{Binding CashTypePersonButtonNormal}"
|
|
DisableBrush="{Binding CashTypePersonButtonDisable}"
|
|
ClickAnimationType="SizeDown"
|
|
BrushStretch = "Fill"
|
|
TextVisible="Visible"
|
|
Text="진동벨"
|
|
TextFontFamily="NanumSquare"
|
|
TextForeground="#808080"
|
|
TextFontSize="30"
|
|
TextFontWeight="Bold"
|
|
DisableForeground="#1469cc"
|
|
DisableFontSize="30"
|
|
DisableWeight="ExtraBold"
|
|
TextHorizontalAlignment="Left"
|
|
TextAlignment="Left"
|
|
TextMargin="54,0,0,0"
|
|
Margin="50,20,0,0"
|
|
Enabled="{Binding BellButtonEnable}"
|
|
LanguageText="{Binding BellButtonText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Command="{Binding BellButtonCommand}"/>
|
|
<uc:AnimationButton x:Name="TalkButton"
|
|
Grid.Column="1"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Left"
|
|
Width="210"
|
|
Height="60"
|
|
NormalBrush="{Binding CashTypeCompanyButtonNormal}"
|
|
DisableBrush="{Binding CashTypeCompanyButtonDisable}"
|
|
ClickAnimationType="SizeDown"
|
|
BrushStretch = "Fill"
|
|
TextVisible="Visible"
|
|
Text="알림톡"
|
|
TextFontFamily="NanumSquare"
|
|
TextForeground="#808080"
|
|
TextFontSize="30"
|
|
TextFontWeight="Bold"
|
|
DisableForeground="#1469cc"
|
|
DisableFontSize="30"
|
|
DisableWeight="ExtraBold"
|
|
TextHorizontalAlignment="Left"
|
|
TextAlignment="Left"
|
|
TextMargin="54,0,0,0"
|
|
Margin="18,20,0,0"
|
|
Enabled="{Binding TalkButtonEnable}"
|
|
LanguageText="{Binding TalkButtonText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Command="{Binding TalkButtonCommand}"/>
|
|
</Grid>
|
|
</Grid>
|
|
<uc:MutiLanguageTextBlock x:Name="TalkNumPadInput"
|
|
Grid.Column="2" Grid.Row="2"
|
|
VerticalAlignment="Top"
|
|
Text="{Binding Path=ShowText ,ElementName=TalkNumPad}"
|
|
FontFamily="NanumSquare"
|
|
Foreground="#1469cc"
|
|
FontSize="35"
|
|
FontWeight="Bold"
|
|
TextAlignment="Center"
|
|
Margin="40,16,0,0"
|
|
Visibility="{Binding TalkNumPadInputVisible,Converter={StaticResource ToVisibility}}"
|
|
/>
|
|
<uc:MutiLanguageTextBlock x:Name="TalkNumPadGuide"
|
|
Grid.Column="2" Grid.Row="2"
|
|
VerticalAlignment="Top"
|
|
Text="{Binding Path=ShowText ,ElementName=TalkNumPad}"
|
|
FontFamily="NanumSquare"
|
|
Foreground="#555555"
|
|
FontSize="24"
|
|
FontWeight="Normal"
|
|
TextAlignment="Center"
|
|
Margin="40,21,0,0"
|
|
Visibility="{Binding TalkNumPadGuideVisible,Converter={StaticResource ToVisibility}}"
|
|
/>
|
|
<local:PBNumericPad x:Name="TalkNumPad"
|
|
Grid.Column="2"
|
|
Grid.Row="3"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Left"
|
|
Width="420"
|
|
Height="472"
|
|
Formated="{Binding TalkNumPadFormated}"
|
|
IsPassWord="False"
|
|
MaxLength="{Binding TalkNumPadMaxLength}"
|
|
GuidText="{Binding TalkNumPadGuidText}"
|
|
InputText="{Binding TalkNumPadNumber,Mode=TwoWay}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Margin="67,0,0,0"
|
|
/>
|
|
</Grid>
|
|
|
|
<Grid x:Name="PaymentSuccess" Grid.Column="0" Grid.Row="2" Grid.ColumnSpan="3"
|
|
Visibility="{Binding PaymentSuccessVisible,Converter={StaticResource ToVisibility}}">
|
|
<Grid HorizontalAlignment="Center">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width ="746"/>
|
|
<ColumnDefinition Width ="554" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid Grid.Column="0">
|
|
<StackPanel Orientation="Vertical" VerticalAlignment="Center">
|
|
<Grid Height="106" Visibility="{Binding StoreAgreeView,Converter={StaticResource ToVisibility}}"/>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="94"/>
|
|
<RowDefinition Height="205"/>
|
|
<RowDefinition Height="21"/>
|
|
<RowDefinition Height="100"/>
|
|
</Grid.RowDefinitions>
|
|
<uc:AnimationButton x:Name="SuccessImage"
|
|
Grid.Row="1"
|
|
Width="220"
|
|
Height="205"
|
|
NormalBrush="{Binding SuccessImage}"/>
|
|
<uc:MutiLanguageTextBlock x:Name="SuccessText"
|
|
Grid.Row="3"
|
|
Text="정상처리 되었습니다."
|
|
VerticalAlignment="Top"
|
|
Foreground="Black"
|
|
FontSize="24"
|
|
FontWeight="Bold"
|
|
FontFamily="NanumSquare"
|
|
TextAlignment="Center"
|
|
LineHeight="34"
|
|
MultiLanguage="{Binding SuccessText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
</Grid>
|
|
</StackPanel>
|
|
</Grid>
|
|
|
|
<Border Grid.Column="1"
|
|
Background="Transparent"
|
|
BorderBrush="#FF1569CC"
|
|
BorderThickness="3"
|
|
CornerRadius="6"
|
|
Margin="37 39 37 39">
|
|
<Border.Resources>
|
|
<Style TargetType="Border">
|
|
<Setter Property="Visibility">
|
|
<Setter.Value>
|
|
<MultiBinding Converter="{StaticResource PointSavingAndStoreAgreeViewToVisibility}">
|
|
<Binding Path="PointSavingButtonOk" />
|
|
<Binding Path="StoreAgreeView" />
|
|
</MultiBinding>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</Border.Resources>
|
|
<Grid Margin="30 0 30 0" >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="115"/>
|
|
<RowDefinition Height="110"/>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition Height="57"/>
|
|
<RowDefinition Height="97"/>
|
|
<RowDefinition Height="105"/>
|
|
<RowDefinition Height="60"/>
|
|
<RowDefinition Height="35"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<uc:AnimationButton Grid.Row="1"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
Width="110"
|
|
Height="110"
|
|
NormalBrush="{Binding WaitNumberSuccessPointImage}"
|
|
BrushStretch="Fill"
|
|
/>
|
|
<uc:MutiLanguageTextBlock Grid.Row="3"
|
|
Text="적립 가능한 포인트가 있습니다."
|
|
VerticalAlignment="Top"
|
|
Foreground="#1469cc"
|
|
FontSize="28"
|
|
FontWeight="Bold"
|
|
FontFamily="NanumSquare"
|
|
TextAlignment="Center"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
<uc:MutiLanguageTextBlock Grid.Row="4"
|
|
Text="동의 버튼 클릭 후 휴대폰 번호를 입력해 주시면 알림톡으로 적립방법을 발송해 드립니다."
|
|
VerticalAlignment="Top"
|
|
Foreground="Black"
|
|
FontSize="18"
|
|
FontWeight="Bold"
|
|
FontFamily="NanumSquare"
|
|
TextAlignment="Center"
|
|
TextWrapping="Wrap"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
<uc:MutiLanguageTextBlock Grid.Row="5"
|
|
Text="- 수집목적 : 포인트 적립 안내 알림톡/LMS발송 - 수집항목 : 휴대폰 번호 - 보유기간 : 수집 후 30일 이내 파기"
|
|
VerticalAlignment="Top"
|
|
Foreground="#999999"
|
|
FontSize="16"
|
|
FontWeight="Normal"
|
|
FontFamily="NanumSquare"
|
|
Margin="5 0 0 0"
|
|
TextAlignment="Left"
|
|
TextWrapping="Wrap"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
<uc:AnimationButton Grid.Row="6"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
Width="370"
|
|
Height="60"
|
|
NormalBrush="{Binding PointSavingButtonBackground}"
|
|
BrushStretch="Fill"
|
|
ClickAnimationType="TextSizeDown"
|
|
TextFontFamily="NanumSquare"
|
|
TextVisible ="Visible"
|
|
TextFontSize ="24"
|
|
TextForeground = "White"
|
|
TextFontWeight ="Bold"
|
|
Text="동의 후 포인트 적립하러가기"
|
|
Command="{Binding PointSavingButtonCommand}"
|
|
/>
|
|
<!--LanguageText="{Binding CancelButtonText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Command="{Binding CancelCommand}"-->
|
|
</Grid>
|
|
</Border>
|
|
|
|
<Grid Grid.Column="1"
|
|
Visibility="{Binding PointSavingButtonOk,Converter={StaticResource ToVisibility}}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="0"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="82"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<uc:MutiLanguageTextBlock x:Name="SucessNumPadInput1"
|
|
Grid.Row="2"
|
|
VerticalAlignment="Top"
|
|
Text="{Binding Path=ShowText ,ElementName=SucessNumPad1}"
|
|
FontFamily="NanumSquare"
|
|
Foreground="#1469cc"
|
|
FontSize="35"
|
|
FontWeight="Bold"
|
|
TextAlignment="Center"
|
|
Margin="0,16,0,0"
|
|
Visibility="{Binding NumPadInputVisible,Converter={StaticResource ToVisibility}}"
|
|
/>
|
|
<uc:MutiLanguageTextBlock x:Name="SucessNumPadGuide1"
|
|
Grid.Row="2"
|
|
VerticalAlignment="Top"
|
|
Text="{Binding Path=ShowText ,ElementName=SucessNumPad1}"
|
|
FontFamily="NanumSquare"
|
|
Foreground="#555555"
|
|
FontSize="24"
|
|
FontWeight="Normal"
|
|
TextAlignment="Center"
|
|
Margin="0,21,0,0"
|
|
Visibility="{Binding NumPadGuideVisible,Converter={StaticResource ToVisibility}}"
|
|
/>
|
|
<local:PBNumericPad x:Name="SucessNumPad1"
|
|
Grid.Row="3"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Left"
|
|
Width="420"
|
|
Height="472"
|
|
Formated="True"
|
|
CurrencyFormat=""
|
|
IsPassWord="False"
|
|
MaxLength="11"
|
|
GuidText="{Binding ConverterParameter='LBL0091', Converter={StaticResource ToMultiLanguage}}"
|
|
InputText="{Binding InputNumber,Mode=TwoWay}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Margin="67,0,0,0"
|
|
/>
|
|
<uc:AnimationButton Grid.Row="0"
|
|
Grid.RowSpan="4"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Center"
|
|
Width="370"
|
|
Height="60"
|
|
Visibility="{Binding PointSavingButtonOk,Converter={StaticResource ToVisibility}}"
|
|
NormalBrush="{Binding PointSavingButtonBackground}"
|
|
BrushStretch="Fill"
|
|
ClickAnimationType="TextSizeDown"
|
|
TextFontFamily="NanumSquare"
|
|
TextVisible ="Visible"
|
|
TextFontSize ="24"
|
|
DisableBrush="Transparent"
|
|
TextForeground = "White"
|
|
TextFontWeight ="Bold"
|
|
Text="알림톡 받기"
|
|
Command="{Binding TalkGetButtonCommand}"
|
|
Enabled="{Binding TalkGetButtonEnabled}"
|
|
Margin="0,610,0,0"
|
|
/>
|
|
</Grid>
|
|
<Grid Grid.Column="1"
|
|
Visibility="{Binding StoreAgreeView,Converter={StaticResource ToVisibility}}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="60"/>
|
|
<RowDefinition Height="610"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width ="40"/>
|
|
<ColumnDefinition Width ="474"/>
|
|
<ColumnDefinition Width ="40"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Border Grid.Column="0" Grid.Row="1" BorderBrush="#dddddd" BorderThickness="1,0,0,0" />
|
|
<Grid Grid.Column="1" Grid.Row="1">
|
|
<local:PBStoreAgree x:Name="PaymentSuccessStoreAgree"
|
|
StoreData="{Binding StoreAgreeData}"
|
|
Command="{Binding StoreAgreeCommand}"/>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<Grid x:Name="WaitNumberSuccess" Grid.Column="0" Grid.Row="2" Grid.ColumnSpan="3"
|
|
Visibility="{Binding WaitNumberSuccessVisible,Converter={StaticResource ToVisibility}}">
|
|
<Grid HorizontalAlignment="Center">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width ="746"/>
|
|
<ColumnDefinition Width ="554" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid Grid.Column="0">
|
|
<StackPanel Orientation="Vertical" VerticalAlignment="Center">
|
|
<Grid Height="106" Visibility="{Binding StoreAgreeView,Converter={StaticResource ToVisibility}}"/>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="110"/>
|
|
<RowDefinition Height="80"/>
|
|
<RowDefinition Height="140"/>
|
|
<RowDefinition Height="97"/>
|
|
</Grid.RowDefinitions>
|
|
<uc:MutiLanguageTextBlock x:Name="WaitNumberHeader"
|
|
Grid.Row="1"
|
|
Text="대기번호"
|
|
VerticalAlignment="Top"
|
|
Foreground="Black"
|
|
FontSize="60"
|
|
FontWeight="Bold"
|
|
TextAlignment="Center"
|
|
FontFamily="NanumSquare"
|
|
MultiLanguage="{Binding WaitNumberHeaderText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
<uc:MutiLanguageTextBlock x:Name="WaitNumberText"
|
|
Grid.Row="2"
|
|
Text="{Binding WaitNumberText}"
|
|
VerticalAlignment="Top"
|
|
Foreground="#1469cc"
|
|
FontSize="110"
|
|
FontWeight="ExtraBold"
|
|
TextAlignment="Center"
|
|
FontFamily="NanumSquare" />
|
|
<uc:MutiLanguageTextBlock x:Name="SuccessInfoText"
|
|
Grid.Row="3"
|
|
Text="정상처리 되었습니다."
|
|
VerticalAlignment="Top"
|
|
Foreground="Black"
|
|
FontSize="24"
|
|
FontWeight="Bold"
|
|
FontFamily="NanumSquare"
|
|
TextAlignment="Center"
|
|
LineHeight="34"
|
|
MultiLanguage="{Binding SuccessInfoText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
</Grid>
|
|
</StackPanel>
|
|
</Grid>
|
|
<Border Grid.Column="1"
|
|
Background="Transparent"
|
|
BorderBrush="#FF1569CC"
|
|
BorderThickness="3"
|
|
CornerRadius="6"
|
|
Margin="37 39 37 39">
|
|
<Border.Resources>
|
|
<Style TargetType="Border">
|
|
<Setter Property="Visibility">
|
|
<Setter.Value>
|
|
<MultiBinding Converter="{StaticResource PointSavingAndStoreAgreeViewToVisibility}">
|
|
<Binding Path="PointSavingButtonOk" />
|
|
<Binding Path="StoreAgreeView" />
|
|
</MultiBinding>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</Border.Resources>
|
|
<Grid Margin="30 0 30 0" >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="115"/>
|
|
<RowDefinition Height="110"/>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition Height="57"/>
|
|
<RowDefinition Height="97"/>
|
|
<RowDefinition Height="105"/>
|
|
<RowDefinition Height="60"/>
|
|
<RowDefinition Height="35"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<uc:AnimationButton Grid.Row="1"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
Width="110"
|
|
Height="110"
|
|
NormalBrush="{Binding WaitNumberSuccessPointImage}"
|
|
BrushStretch="Fill"
|
|
/>
|
|
<uc:MutiLanguageTextBlock Grid.Row="3"
|
|
Text="적립 가능한 포인트가 있습니다."
|
|
VerticalAlignment="Top"
|
|
Foreground="#1469cc"
|
|
FontSize="28"
|
|
FontWeight="Bold"
|
|
FontFamily="NanumSquare"
|
|
TextAlignment="Center"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
<uc:MutiLanguageTextBlock Grid.Row="4"
|
|
Text="동의 버튼 클릭 후 휴대폰 번호를 입력해 주시면 알림톡으로 적립방법을 발송해 드립니다."
|
|
VerticalAlignment="Top"
|
|
Foreground="Black"
|
|
FontSize="18"
|
|
FontWeight="Bold"
|
|
FontFamily="NanumSquare"
|
|
TextAlignment="Center"
|
|
TextWrapping="Wrap"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
<uc:MutiLanguageTextBlock Grid.Row="5"
|
|
Text="- 수집목적 : 포인트 적립 안내 알림톡/LMS발송 - 수집항목 : 휴대폰 번호 - 보유기간 : 수집 후 30일 이내 파기"
|
|
VerticalAlignment="Top"
|
|
Foreground="#999999"
|
|
FontSize="16"
|
|
FontWeight="Normal"
|
|
FontFamily="NanumSquare"
|
|
Margin="5 0 0 0"
|
|
TextAlignment="Left"
|
|
TextWrapping="Wrap"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
<uc:AnimationButton Grid.Row="6"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
Width="370"
|
|
Height="60"
|
|
NormalBrush="{Binding PointSavingButtonBackground}"
|
|
BrushStretch="Fill"
|
|
ClickAnimationType="TextSizeDown"
|
|
TextFontFamily="NanumSquare"
|
|
TextVisible ="Visible"
|
|
TextFontSize ="24"
|
|
TextForeground = "White"
|
|
TextFontWeight ="Bold"
|
|
Text="동의 후 포인트 적립하러가기"
|
|
Command="{Binding PointSavingButtonCommand}"
|
|
/>
|
|
<!--LanguageText="{Binding CancelButtonText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Command="{Binding CancelCommand}"-->
|
|
</Grid>
|
|
</Border>
|
|
|
|
<Grid Grid.Column="1"
|
|
Visibility="{Binding PointSavingButtonOk,Converter={StaticResource ToVisibility}}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="0"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="82"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<uc:MutiLanguageTextBlock x:Name="SucessNumPadInput2"
|
|
Grid.Row="2"
|
|
VerticalAlignment="Top"
|
|
Text="{Binding Path=ShowText ,ElementName=SucessNumPad2}"
|
|
FontFamily="NanumSquare"
|
|
Foreground="#1469cc"
|
|
FontSize="35"
|
|
FontWeight="Bold"
|
|
TextAlignment="Center"
|
|
Margin="0,16,0,0"
|
|
Visibility="{Binding NumPadInputVisible,Converter={StaticResource ToVisibility}}"
|
|
/>
|
|
<uc:MutiLanguageTextBlock x:Name="SucessNumPadGuide2"
|
|
Grid.Row="2"
|
|
VerticalAlignment="Top"
|
|
Text="{Binding Path=ShowText ,ElementName=SucessNumPad2}"
|
|
FontFamily="NanumSquare"
|
|
Foreground="#555555"
|
|
FontSize="24"
|
|
FontWeight="Normal"
|
|
TextAlignment="Center"
|
|
Margin="0,21,0,0"
|
|
Visibility="{Binding NumPadGuideVisible,Converter={StaticResource ToVisibility}}"
|
|
/>
|
|
<local:PBNumericPad x:Name="SucessNumPad2"
|
|
Grid.Row="3"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Left"
|
|
Width="420"
|
|
Height="472"
|
|
Formated="True"
|
|
CurrencyFormat=""
|
|
IsPassWord="False"
|
|
MaxLength="11"
|
|
GuidText="{Binding ConverterParameter='LBL0091', Converter={StaticResource ToMultiLanguage}}"
|
|
InputText="{Binding InputNumber,Mode=TwoWay}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Margin="67,0,0,0"
|
|
/>
|
|
<uc:AnimationButton Grid.Row="0"
|
|
Grid.RowSpan="4"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Center"
|
|
Width="370"
|
|
Height="60"
|
|
Visibility="{Binding PointSavingButtonOk,Converter={StaticResource ToVisibility}}"
|
|
NormalBrush="{Binding PointSavingButtonBackground}"
|
|
BrushStretch="Fill"
|
|
ClickAnimationType="TextSizeDown"
|
|
TextFontFamily="NanumSquare"
|
|
TextVisible ="Visible"
|
|
TextFontSize ="24"
|
|
DisableBrush="Transparent"
|
|
TextForeground = "White"
|
|
TextFontWeight ="Bold"
|
|
Text="알림톡 받기"
|
|
Command="{Binding TalkGetButtonCommand}"
|
|
Enabled="{Binding TalkGetButtonEnabled}"
|
|
Margin="0,610,0,0"
|
|
/>
|
|
</Grid>
|
|
<Grid Grid.Column="1"
|
|
Visibility="{Binding StoreAgreeView,Converter={StaticResource ToVisibility}}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="60"/>
|
|
<RowDefinition Height="610"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width ="40"/>
|
|
<ColumnDefinition Width ="474"/>
|
|
<ColumnDefinition Width ="40"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Border Grid.Column="0" Grid.Row="1" BorderBrush="#dddddd" BorderThickness="1,0,0,0" />
|
|
<Grid Grid.Column="1" Grid.Row="1">
|
|
<local:PBStoreAgree x:Name="WaitNumberStoreAgree"
|
|
StoreData="{Binding StoreAgreeData}"
|
|
Command="{Binding StoreAgreeCommand}"/>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<Grid x:Name="TalkSuccess" Grid.Column="0" Grid.Row="2" Grid.ColumnSpan="3"
|
|
Visibility="{Binding TalkSuccessVisible,Converter={StaticResource ToVisibility}}">
|
|
<Grid HorizontalAlignment="Center">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width ="746"/>
|
|
<ColumnDefinition Width ="554" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid Grid.Column="0">
|
|
<StackPanel Orientation="Vertical" VerticalAlignment="Center">
|
|
<Grid Height="106" Visibility="{Binding StoreAgreeView,Converter={StaticResource ToVisibility}}"/>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="94"/>
|
|
<RowDefinition Height="150"/>
|
|
<RowDefinition Height="15"/>
|
|
<RowDefinition Height="65"/>
|
|
<RowDefinition Height="100"/>
|
|
</Grid.RowDefinitions>
|
|
<uc:AnimationButton x:Name="TalkSuccessImage"
|
|
Grid.Row="1"
|
|
Width="180"
|
|
Height="150"
|
|
NormalBrush="{Binding TalkSuccessImage}"/>
|
|
<uc:MutiLanguageTextBlock x:Name="TalkSuccessText"
|
|
Grid.Row="3"
|
|
Text="알림톡을 확인하세요."
|
|
VerticalAlignment="Top"
|
|
Foreground="Black"
|
|
FontSize="40"
|
|
FontWeight="Bold"
|
|
TextAlignment="Center"
|
|
FontFamily="NanumSquare"
|
|
MultiLanguage="{Binding TalkSuccessText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
<uc:MutiLanguageTextBlock x:Name="TalkSuccessInfoText"
|
|
Grid.Row="4"
|
|
Text="정상처리 되었습니다."
|
|
VerticalAlignment="Top"
|
|
Foreground="Black"
|
|
FontSize="24"
|
|
FontWeight="Bold"
|
|
FontFamily="NanumSquare"
|
|
TextAlignment="Center"
|
|
LineHeight="34"
|
|
MultiLanguage="{Binding TalkSuccessInfoText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
</Grid>
|
|
</StackPanel>
|
|
|
|
|
|
</Grid>
|
|
|
|
<Border Grid.Column="1"
|
|
Background="Transparent"
|
|
BorderBrush="#FF1569CC"
|
|
BorderThickness="3"
|
|
CornerRadius="6"
|
|
Margin="37 39 37 39">
|
|
<Border.Resources>
|
|
<Style TargetType="Border">
|
|
<Setter Property="Visibility">
|
|
<Setter.Value>
|
|
<MultiBinding Converter="{StaticResource PointSavingAndStoreAgreeViewToVisibility}">
|
|
<Binding Path="PointSavingButtonOk" />
|
|
<Binding Path="StoreAgreeView" />
|
|
</MultiBinding>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</Border.Resources>
|
|
<Grid Margin="30 0 30 0" >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="115"/>
|
|
<RowDefinition Height="110"/>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition Height="57"/>
|
|
<RowDefinition Height="97"/>
|
|
<RowDefinition Height="105"/>
|
|
<RowDefinition Height="60"/>
|
|
<RowDefinition Height="35"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<uc:AnimationButton Grid.Row="1"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
Width="110"
|
|
Height="110"
|
|
NormalBrush="{Binding WaitNumberSuccessPointImage}"
|
|
BrushStretch="Fill"
|
|
/>
|
|
<uc:MutiLanguageTextBlock Grid.Row="3"
|
|
Text="적립 가능한 포인트가 있습니다."
|
|
VerticalAlignment="Top"
|
|
Foreground="#1469cc"
|
|
FontSize="28"
|
|
FontWeight="Bold"
|
|
FontFamily="NanumSquare"
|
|
TextAlignment="Center"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
<uc:MutiLanguageTextBlock Grid.Row="4"
|
|
Text="동의 버튼 클릭 후 휴대폰 번호를 입력해 주시면 알림톡으로 적립방법을 발송해 드립니다."
|
|
VerticalAlignment="Top"
|
|
Foreground="Black"
|
|
FontSize="18"
|
|
FontWeight="Bold"
|
|
FontFamily="NanumSquare"
|
|
TextAlignment="Center"
|
|
TextWrapping="Wrap"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
<uc:MutiLanguageTextBlock Grid.Row="5"
|
|
Text="- 수집목적 : 포인트 적립 안내 알림톡/LMS발송 - 수집항목 : 휴대폰 번호 - 보유기간 : 수집 후 30일 이내 파기"
|
|
VerticalAlignment="Top"
|
|
Foreground="#999999"
|
|
FontSize="16"
|
|
FontWeight="Normal"
|
|
FontFamily="NanumSquare"
|
|
Margin="5 0 0 0"
|
|
TextAlignment="Left"
|
|
TextWrapping="Wrap"
|
|
DisplayLanguage="{Binding ShowLanguageType}" />
|
|
<uc:AnimationButton Grid.Row="6"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
Width="370"
|
|
Height="60"
|
|
NormalBrush="{Binding PointSavingButtonBackground}"
|
|
BrushStretch="Fill"
|
|
ClickAnimationType="TextSizeDown"
|
|
TextFontFamily="NanumSquare"
|
|
TextVisible ="Visible"
|
|
TextFontSize ="24"
|
|
TextForeground = "White"
|
|
TextFontWeight ="Bold"
|
|
Text="동의 후 포인트 적립하러가기"
|
|
Command="{Binding PointSavingButtonCommand}"
|
|
/>
|
|
<!--LanguageText="{Binding CancelButtonText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Command="{Binding CancelCommand}"-->
|
|
</Grid>
|
|
</Border>
|
|
|
|
<Grid Grid.Column="1"
|
|
Visibility="{Binding PointSavingButtonOk,Converter={StaticResource ToVisibility}}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="0"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="82"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<uc:MutiLanguageTextBlock x:Name="SucessNumPadInput3"
|
|
Grid.Row="2"
|
|
VerticalAlignment="Top"
|
|
Text="{Binding Path=ShowText ,ElementName=SucessNumPad3}"
|
|
FontFamily="NanumSquare"
|
|
Foreground="#1469cc"
|
|
FontSize="35"
|
|
FontWeight="Bold"
|
|
TextAlignment="Center"
|
|
Margin="0,16,0,0"
|
|
Visibility="{Binding NumPadInputVisible,Converter={StaticResource ToVisibility}}"
|
|
/>
|
|
<uc:MutiLanguageTextBlock x:Name="SucessNumPadGuide3"
|
|
Grid.Row="2"
|
|
VerticalAlignment="Top"
|
|
Text="{Binding Path=ShowText ,ElementName=SucessNumPad3}"
|
|
FontFamily="NanumSquare"
|
|
Foreground="#555555"
|
|
FontSize="24"
|
|
FontWeight="Normal"
|
|
TextAlignment="Center"
|
|
Margin="0,21,0,0"
|
|
Visibility="{Binding NumPadGuideVisible,Converter={StaticResource ToVisibility}}"
|
|
/>
|
|
<local:PBNumericPad x:Name="SucessNumPad3"
|
|
Grid.Row="3"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Left"
|
|
Width="420"
|
|
Height="472"
|
|
Formated="True"
|
|
CurrencyFormat=""
|
|
IsPassWord="False"
|
|
MaxLength="11"
|
|
GuidText="{Binding ConverterParameter='LBL0091', Converter={StaticResource ToMultiLanguage}}"
|
|
InputText="{Binding InputNumber,Mode=TwoWay}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Margin="67,0,0,0"
|
|
/>
|
|
<uc:AnimationButton Grid.Row="0"
|
|
Grid.RowSpan="4"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Center"
|
|
Width="370"
|
|
Height="60"
|
|
Visibility="{Binding PointSavingButtonOk,Converter={StaticResource ToVisibility}}"
|
|
NormalBrush="{Binding PointSavingButtonBackground}"
|
|
BrushStretch="Fill"
|
|
ClickAnimationType="TextSizeDown"
|
|
TextFontFamily="NanumSquare"
|
|
TextVisible ="Visible"
|
|
TextFontSize ="24"
|
|
DisableBrush="Transparent"
|
|
TextForeground = "White"
|
|
TextFontWeight ="Bold"
|
|
Text="알림톡 받기"
|
|
Command="{Binding TalkGetButtonCommand}"
|
|
Enabled="{Binding TalkGetButtonEnabled}"
|
|
Margin="0,610,0,0"
|
|
/>
|
|
</Grid>
|
|
<Grid Grid.Column="1"
|
|
Visibility="{Binding StoreAgreeView,Converter={StaticResource ToVisibility}}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="60"/>
|
|
<RowDefinition Height="610"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width ="40"/>
|
|
<ColumnDefinition Width ="474"/>
|
|
<ColumnDefinition Width ="40"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Border Grid.Column="0" Grid.Row="1" BorderBrush="#dddddd" BorderThickness="1,0,0,0" />
|
|
<Grid Grid.Column="1" Grid.Row="1">
|
|
<local:PBStoreAgree x:Name="TalkStoreAgree"
|
|
StoreData="{Binding StoreAgreeData}"
|
|
Command="{Binding StoreAgreeCommand}"/>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
|
|
<StackPanel Grid.Column="1"
|
|
Grid.Row="3"
|
|
Orientation="Vertical"
|
|
VerticalAlignment="Center">
|
|
<uc:MutiLanguageTextBlock x:Name="InfoGuid1"
|
|
Width="1260"
|
|
HorizontalAlignment="Left"
|
|
Foreground="#cc1473"
|
|
FontFamily="NanumSquare"
|
|
FontSize="20"
|
|
FontWeight="Bold"
|
|
Margin="0,0,0,0"
|
|
Text="* 인증시 해피포인트가 자동 적립됩니다."
|
|
TextAlignment="Left"
|
|
MultiLanguage="{Binding InfoGuid1Text}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"/>
|
|
<uc:MutiLanguageTextBlock x:Name="InfoGuid2"
|
|
Width="1260"
|
|
AutoTextTrim="True"
|
|
HorizontalAlignment="Left"
|
|
Foreground="#cc1473"
|
|
FontFamily="NanumSquare"
|
|
FontSize="20"
|
|
FontWeight="Bold"
|
|
Margin="0,0,0,0"
|
|
Text="* 수집된 개인정보는 활용 후 자동 폐기 됩니다."
|
|
TextAlignment="Left"
|
|
MultiLanguage="{Binding InfoGuid2Text}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"/>
|
|
|
|
</StackPanel>
|
|
|
|
<StackPanel x:Name="ButtonStack" Grid.Row="1"
|
|
Orientation="Horizontal">
|
|
<uc:AnimationButton x:Name="Cancel_Button"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Left"
|
|
Width="{Binding CancelButtonWidth}"
|
|
Height="80"
|
|
NormalBrush="#333333"
|
|
BrushStretch = "Fill"
|
|
ClickAnimationType="TextSizeDown"
|
|
TextFontFamily="NanumSquare"
|
|
TextVisible ="Visible"
|
|
TextFontSize ="30"
|
|
TextForeground = "White"
|
|
TextFontWeight ="Bold"
|
|
LanguageText="{Binding CancelButtonText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Command="{Binding CancelCommand}"/>
|
|
<uc:AnimationButton x:Name="OK_Button"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Right"
|
|
Width="{Binding OKButtonWidth}"
|
|
Height="80"
|
|
NormalBrush="#1469cc"
|
|
BrushStretch = "Fill"
|
|
DisableBrush="#aaaaaa"
|
|
ClickAnimationType="TextSizeDown"
|
|
TextVisible ="Visible"
|
|
TextFontSize ="30"
|
|
TextForeground = "White"
|
|
DisableForeground="#dddddd"
|
|
TextFontWeight ="Bold"
|
|
Enabled="{Binding OKButtonEnabled}"
|
|
LanguageText="{Binding OkButtonText}"
|
|
DisplayLanguage="{Binding ShowLanguageType}"
|
|
Command="{Binding OkCommand}"/>
|
|
|
|
</StackPanel>
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|