| 12345678910111213141516 |
- //
- // System.Drawing.HotkeyPrefix.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Dennis Hayes ([email protected])
- //
- using System;
- namespace System.Drawing.Text
- {
- [Serializable]
- public enum HotkeyPrefix {
- Hide = 2,
- None = 0,
- Show = 1
- }
- }
|