| 1234567891011121314151617181920212223 |
- //
- // System.Windows.Forms.MessageBoxButtons.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Windows.Forms {
- /// <summary>
- /// </summary>
- public enum MessageBoxButtons {
- AbortRetryIgnore = 2,
- OK = 0,
- OKCancel = 1,
- RetryCancel = 5,
- YesNo = 4,
- YesNoCancel = 3
- }
- }
|