blob: aedcf9c3de725d5401d42b2c8d64f2c68e9ec094 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System;
namespace XMainClient
{
public enum CalculatorKey
{
KEY0,
KEY1,
KEY2,
KEY3,
KEY4,
KEY5,
KEY6,
KEY7,
KEY8,
KEY9,
OK,
DEL,
MAX
}
}
|