| 1234567891011121314151617181920 |
- //
- // System.Windows.Forms.MessageBoxDefaultButton.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Windows.Forms {
- /// <summary>
- /// </summary>
- public enum MessageBoxDefaultButton {
- Button1 = 0,
- Button2 = 256,
- Button3 = 512
- }
- }
|