// // System.Windows.Forms.MessageBoxIcon.cs // // Author: // Dennis Hayes (dennish@raytek.com) // (C) 2002 Ximian, Inc. http://www.ximian.com // using System; namespace System.Windows.Forms { /// /// public enum MessageBoxIcon { Asterisk = 64, Error = 16, Exclamation = 48, Hand = 16, Information = 64, None = 0, Question = 32, Stop = 16, Warning = 48 } }