-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathESKeypadControl.xaml
More file actions
36 lines (36 loc) · 2.11 KB
/
ESKeypadControl.xaml
File metadata and controls
36 lines (36 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<controls:ESKeypadControl
xmlns="https://spacestation14.io"
xmlns:controls="clr-namespace:Content.Client._ES.Keypad.Ui"
xmlns:graphics="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
Orientation="Vertical">
<HStack>
<FillPanel>
<PanelContainer.PanelOverride>
<graphics:StyleBoxFlat BackgroundColor="#000000"/>
</PanelContainer.PanelOverride>
<HStack Margin="5">
<RichTextLabel Name="InputLabel" HorizontalExpand="True" HorizontalAlignment="Center"/>
</HStack>
</FillPanel>
<TextureRect Name="LockedIndicator"
Stretch="KeepAspectCentered"
TexturePath="/Textures/Interface/NavMap/beveled_circle.png"
SetSize="16 16"
Margin="10 0 0 0"/>
</HStack>
<Spacer VSpace="5"/>
<GridContainer Columns="3">
<Button Name="Button1" Text="{Loc 'es-keypad-ui-button-1'}" StyleClasses="OpenBoth" MinWidth="40"/>
<Button Name="Button2" Text="{Loc 'es-keypad-ui-button-2'}" StyleClasses="OpenBoth" MinWidth="40"/>
<Button Name="Button3" Text="{Loc 'es-keypad-ui-button-3'}" StyleClasses="OpenLeft" MinWidth="40"/>
<Button Name="Button4" Text="{Loc 'es-keypad-ui-button-4'}" StyleClasses="OpenBoth"/>
<Button Name="Button5" Text="{Loc 'es-keypad-ui-button-5'}" StyleClasses="OpenBoth"/>
<Button Name="Button6" Text="{Loc 'es-keypad-ui-button-6'}" StyleClasses="OpenBoth"/>
<Button Name="Button7" Text="{Loc 'es-keypad-ui-button-7'}" StyleClasses="OpenBoth"/>
<Button Name="Button8" Text="{Loc 'es-keypad-ui-button-8'}" StyleClasses="OpenBoth"/>
<Button Name="Button9" Text="{Loc 'es-keypad-ui-button-9'}" StyleClasses="OpenBoth"/>
<Button Name="ButtonC" Text="{Loc 'es-keypad-ui-button-C'}" StyleClasses="OpenRight"/>
<Button Name="Button0" Text="{Loc 'es-keypad-ui-button-0'}" StyleClasses="OpenBoth"/>
<Button Name="ButtonReturn" Text="{Loc 'es-keypad-ui-button-return'}" StyleClasses="OpenBoth"/>
</GridContainer>
</controls:ESKeypadControl>