| 123456789101112131415161718192021 |
- //
- // System.Windows.Forms.MessageBoxOptions.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Windows.Forms {
- /// <summary>
- /// </summary>
- public enum MessageBoxOptions {
- DefaultDesktopOnly = 131072,
- RightAlign = 524288,
- RtlReading = 1048576,
- ServiceNotification = 2097152
- }
- }
|