using System; namespace Insiders.Windows.Forms { /// /// FunctionKey(ファンクション・キー)のインデックスを提供する列挙体。 /// public enum FunctionKey { Escape = 0x001b, F1 = 0x0070, F2 = 0x0071, F3 = 0x0072, F4 = 0x0073, F5 = 0x0074, F6 = 0x0075, F7 = 0x0076, F8 = 0x0077, F9 = 0x0078, F10 = 0x0079, F11 = 0x007a, F12 = 0x007b } }