|
|
@@ -0,0 +1,514 @@
|
|
|
+<Window x:Class="OHV.Module.Interactivity.PopUp.KeyPadView"
|
|
|
+ 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:OHV.Module.Interactivity.PopUp"
|
|
|
+ mc:Ignorable="d" WindowStartupLocation="CenterScreen"
|
|
|
+ Title="Window_Blue_KeyPad" Height="322.134" Width="948.171">
|
|
|
+ <Window.Resources>
|
|
|
+ <Style x:Key="ButtonStyleEtc" TargetType="{x:Type Button}">
|
|
|
+ <Setter Property="Template">
|
|
|
+ <Setter.Value>
|
|
|
+ <ControlTemplate TargetType="{x:Type Button}">
|
|
|
+ <Grid>
|
|
|
+ <Rectangle Stroke="{x:Null}"/>
|
|
|
+ <Rectangle x:Name="rectangle" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="2.5" RadiusX="2" RadiusY="2" Fill="{TemplateBinding Background}"/>
|
|
|
+ <TextBlock x:Name="textBlock" Margin="0" TextWrapping="Wrap" Padding="{TemplateBinding Padding}" Text="{TemplateBinding Content}" HorizontalAlignment="{TemplateBinding HorizontalAlignment}" Width="{TemplateBinding Width}" Foreground="{TemplateBinding Foreground}" Height="{TemplateBinding Height}" TextAlignment="Center" VerticalAlignment="{TemplateBinding VerticalAlignment}" FontSize="{TemplateBinding FontSize}"/>
|
|
|
+ </Grid>
|
|
|
+ <ControlTemplate.Triggers>
|
|
|
+ <Trigger Property="IsDefault" Value="False"/>
|
|
|
+ <Trigger Property="IsFocused" Value="True"/>
|
|
|
+ <Trigger Property="IsDefaulted" Value="True"/>
|
|
|
+ <Trigger Property="IsMouseOver" Value="True">
|
|
|
+ <Setter Property="Fill" TargetName="rectangle">
|
|
|
+ <Setter.Value>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF4674B6" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Setter.Value>
|
|
|
+ </Setter>
|
|
|
+ <Setter Property="Foreground" TargetName="textBlock" Value="White"/>
|
|
|
+ </Trigger>
|
|
|
+ <Trigger Property="IsPressed" Value="True">
|
|
|
+ <Setter Property="Fill" TargetName="rectangle">
|
|
|
+ <Setter.Value>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF4674B6" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Setter.Value>
|
|
|
+ </Setter>
|
|
|
+ <Setter Property="Foreground" TargetName="textBlock" Value="#FFD88102"/>
|
|
|
+ <Setter Property="Stroke" TargetName="rectangle" Value="{x:Null}"/>
|
|
|
+ </Trigger>
|
|
|
+ <Trigger Property="IsEnabled" Value="False"/>
|
|
|
+ </ControlTemplate.Triggers>
|
|
|
+ </ControlTemplate>
|
|
|
+ </Setter.Value>
|
|
|
+ </Setter>
|
|
|
+ </Style>
|
|
|
+ </Window.Resources>
|
|
|
+ <Grid>
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <TextBox x:Name="TB_KEY_PAD" HorizontalAlignment="Left" Height="46" Margin="8,8,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="919" FontSize="28"/>
|
|
|
+ <Button x:Name="BTN_KEYPAD_ONE" Content="1" HorizontalAlignment="Left" Margin="8,72,0,0" Width="67" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_ONE_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_TWO" Content="2" HorizontalAlignment="Left" Margin="81,72,0,0" Width="66" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_TWO_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_THREE" Content="3" HorizontalAlignment="Left" Margin="152,72,0,0" Width="67" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_THREE_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_FOUR" Content="4" HorizontalAlignment="Left" Margin="226,72,0,0" Width="66" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_FOUR_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_FIVE" Content="5" HorizontalAlignment="Left" Margin="298,72,0,0" Width="66" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_FIVE_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_SIX" Content="6" HorizontalAlignment="Left" Margin="370,72,0,0" Width="67" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_SIX_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_SEVEN" Content="7" HorizontalAlignment="Left" Margin="443,72,0,0" Width="66" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_SEVEN_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_EIGHT" Content="8" HorizontalAlignment="Left" Margin="515,72,0,0" Width="67" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_EIGHT_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_NINE" Content="9" HorizontalAlignment="Left" Margin="588,72,0,0" Width="67" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_NINE_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_ZERO" Content="0" HorizontalAlignment="Left" Margin="661,72,0,0" Width="66" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_ZERO_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_BAR" Content="-" HorizontalAlignment="Left" Margin="732,72,0,0" Width="66" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_BAR_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_BACKSPACE" Content="BACKSPACE" HorizontalAlignment="Left" Margin="803,72,0,0" Width="124" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,12,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_BACKSPACE_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_q" Content="q" HorizontalAlignment="Left" Margin="8,125,0,0" Width="72" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_q_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_TWO_w" Content="w" HorizontalAlignment="Left" Margin="86,125,0,0" Width="70" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_TWO_w_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_e" Content="e" HorizontalAlignment="Left" Margin="162,125,0,0" Width="71" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_e_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_r" Content="r" HorizontalAlignment="Left" Margin="241,125,0,0" Width="70" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_r_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_t" Content="t" HorizontalAlignment="Left" Margin="318,125,0,0" Width="70" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_t_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_y" Content="y" HorizontalAlignment="Left" Margin="394,125,0,0" Width="72" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_y_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_u" Content="u" HorizontalAlignment="Left" Margin="472,125,0,0" Width="71" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_u_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_i" Content="i" HorizontalAlignment="Left" Margin="549,125,0,0" Width="72" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_i_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_o" Content="o" HorizontalAlignment="Left" Margin="627,125,0,0" Width="72" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_o_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_p" Content="p" HorizontalAlignment="Left" Margin="705,125,0,0" Width="70" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_p_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_LEFT" Content="[" HorizontalAlignment="Left" Margin="781,125,0,0" Width="70" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_LEFT_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_RIGHT" Content="]" HorizontalAlignment="Left" Margin="857,125,0,0" Width="70" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_RIGHT_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_a" Content="a" HorizontalAlignment="Left" Margin="70,178,0,0" Width="74" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_a_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_s" Content="s" HorizontalAlignment="Left" Margin="150,178,0,0" Width="72" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_s_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_d" Content="d" HorizontalAlignment="Left" Margin="228,178,0,0" Width="73" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_d_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_f" Content="f" HorizontalAlignment="Left" Margin="309,178,0,0" Width="72" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_f_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_g" Content="g" HorizontalAlignment="Left" Margin="388,178,0,0" Width="72" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_g_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_h" Content="h" HorizontalAlignment="Left" Margin="466,178,0,0" Width="74" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_h_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_j" Content="j" HorizontalAlignment="Left" Margin="546,178,0,0" Width="73" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_j_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_k" Content="k" HorizontalAlignment="Left" Margin="625,178,0,0" Width="74" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_k_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_l" Content="l" HorizontalAlignment="Left" Margin="705,178,0,0" Width="74" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_l_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_ENTER" Content="ENTER" HorizontalAlignment="Left" Margin="784,178,0,0" Width="143" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,12,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_ENTER_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_CAPSLOCK" Content="caps" HorizontalAlignment="Left" Margin="8,178,0,0" Width="57" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="15" Style="{DynamicResource ButtonStyleEtc}" Padding="1,14,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_CAPSLOCK_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_z" Content="z" HorizontalAlignment="Left" Margin="9,231,0,0" Width="74" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_z_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_x" Content="x" HorizontalAlignment="Left" Margin="89,231,0,0" Width="72" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_x_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_c" Content="c" HorizontalAlignment="Left" Margin="167,231,0,0" Width="73" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_c_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_v" Content="v" HorizontalAlignment="Left" Margin="248,231,0,0" Width="72" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_v_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_b" Content="b" HorizontalAlignment="Left" Margin="537,231,0,0" Width="72" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_b_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_n" Content="n" HorizontalAlignment="Left" Margin="614,231,0,0" Width="74" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_n_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_m" Content="m" HorizontalAlignment="Left" Margin="694,231,0,0" Width="73" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_m_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_COMMA" Content="," HorizontalAlignment="Left" Margin="773,231,0,0" Width="74" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_COMMA_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_POINTER" Content="." HorizontalAlignment="Left" Margin="853,231,0,0" Width="74" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_POINTER_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+ <Button x:Name="BTN_KEYPAD_SPACEBAR" Content="SPACE" HorizontalAlignment="Left" Margin="325,231,0,0" Width="207" FontFamily="Malgun Gothic" FontWeight="Bold" FontSize="18" Style="{DynamicResource ButtonStyleEtc}" Padding="1,15,1,1" Height="48" VerticalAlignment="Top" Click="BTN_KEYPAD_SPACEBAR_Click">
|
|
|
+ <Button.Background>
|
|
|
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
+ <GradientStop Color="#FFDFDFE4" Offset="1"/>
|
|
|
+ <GradientStop Color="#FF979797"/>
|
|
|
+ <GradientStop Color="White" Offset="0.009"/>
|
|
|
+ <GradientStop Color="#FF9696A8" Offset="0.511"/>
|
|
|
+ </LinearGradientBrush>
|
|
|
+ </Button.Background>
|
|
|
+ </Button>
|
|
|
+
|
|
|
+ </Grid>
|
|
|
+</Window>
|