100 lines
5.0 KiB
Plaintext
100 lines
5.0 KiB
Plaintext
|
<UserControl x:Class="SPC.Kiosk.Popup.PBNumericPad"
|
||
|
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:uc ="clr-namespace:SPC.Kiosk.Common;assembly=SPC.Kiosk.Common"
|
||
|
xmlns:local="clr-namespace:SPC.Kiosk.Popup"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="450"
|
||
|
d:DesignWidth="400"
|
||
|
x:Name="PadBase">
|
||
|
<Grid>
|
||
|
<Grid x:Name="BaseGrid" Width="{Binding Path=Width,ElementName=PadBase}" Height="{Binding Path=Height,ElementName=PadBase}" Background="Transparent">
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="1*"/>
|
||
|
<ColumnDefinition Width="1*"/>
|
||
|
<ColumnDefinition Width="1*"/>
|
||
|
</Grid.ColumnDefinitions>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="2*"/>
|
||
|
<RowDefinition Height="2*"/>
|
||
|
<RowDefinition Height="2*"/>
|
||
|
<RowDefinition Height="2*"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
<uc:AnimationButton x:Name="Button0"
|
||
|
Grid.Column="1"
|
||
|
Grid.Row="3"
|
||
|
ClickAnimationType="SizeDown"
|
||
|
BrushStretch="Fill"
|
||
|
TextVisible="Collapsed"/>
|
||
|
<uc:AnimationButton x:Name="Button1"
|
||
|
Grid.Column="0"
|
||
|
Grid.Row="0"
|
||
|
ClickAnimationType="SizeDown"
|
||
|
BrushStretch="Fill"
|
||
|
TextVisible="Collapsed"/>
|
||
|
<uc:AnimationButton x:Name="Button2"
|
||
|
Grid.Column="1"
|
||
|
Grid.Row="0"
|
||
|
ClickAnimationType="SizeDown"
|
||
|
BrushStretch="Fill"
|
||
|
TextVisible="Collapsed"/>
|
||
|
<uc:AnimationButton x:Name="Button3"
|
||
|
Grid.Column="2"
|
||
|
Grid.Row="0"
|
||
|
ClickAnimationType="SizeDown"
|
||
|
BrushStretch="Fill"
|
||
|
TextVisible="Collapsed"/>
|
||
|
<uc:AnimationButton x:Name="Button4"
|
||
|
Grid.Column="0"
|
||
|
Grid.Row="1"
|
||
|
ClickAnimationType="SizeDown"
|
||
|
BrushStretch="Fill"
|
||
|
TextVisible="Collapsed"/>
|
||
|
<uc:AnimationButton x:Name="Button5"
|
||
|
Grid.Column="1"
|
||
|
Grid.Row="1"
|
||
|
ClickAnimationType="SizeDown"
|
||
|
BrushStretch="Fill"
|
||
|
TextVisible="Collapsed"/>
|
||
|
<uc:AnimationButton x:Name="Button6"
|
||
|
Grid.Column="2"
|
||
|
Grid.Row="1"
|
||
|
ClickAnimationType="SizeDown"
|
||
|
BrushStretch="Fill"
|
||
|
TextVisible="Collapsed"/>
|
||
|
<uc:AnimationButton x:Name="Button7"
|
||
|
Grid.Column="0"
|
||
|
Grid.Row="2"
|
||
|
ClickAnimationType="SizeDown"
|
||
|
BrushStretch="Fill"
|
||
|
TextVisible="Collapsed"/>
|
||
|
<uc:AnimationButton x:Name="Button8"
|
||
|
Grid.Column="1"
|
||
|
Grid.Row="2"
|
||
|
ClickAnimationType="SizeDown"
|
||
|
BrushStretch="Fill"
|
||
|
TextVisible="Collapsed"/>
|
||
|
<uc:AnimationButton x:Name="Button9"
|
||
|
Grid.Column="2"
|
||
|
Grid.Row="2"
|
||
|
ClickAnimationType="SizeDown"
|
||
|
BrushStretch="Fill"
|
||
|
TextVisible="Collapsed"/>
|
||
|
<uc:AnimationButton x:Name="ButtonBack"
|
||
|
Grid.Column="2"
|
||
|
Grid.Row="3"
|
||
|
ClickAnimationType="SizeDown"
|
||
|
BrushStretch="Fill"
|
||
|
TextVisible="Collapsed"/>
|
||
|
<uc:AnimationButton x:Name="ButtonCancel"
|
||
|
Grid.Column="0"
|
||
|
Grid.Row="3"
|
||
|
ClickAnimationType="SizeDown"
|
||
|
BrushStretch="Fill"
|
||
|
TextVisible="Collapsed"/>
|
||
|
</Grid>
|
||
|
</Grid>
|
||
|
</UserControl>
|