| 123456789101112131415161718 |
- //
- // System.Windows.Forms.ComboBox
- //
- // Author:
- // Joel Basson ([email protected])
- //
- //
- using System;
- namespace System.Windows.Forms
- {
- public enum MessageBoxButtons{
- OK, OKCancel, RetryCancel, YesNo, YesNoCancel, AbortRetryIgnore
- }
- }
|