System.Windows.Forms.MessageBoxForm.SetupIcon C# (CSharp) 메소드

SetupIcon() 공개 메소드

public SetupIcon ( MessageBoxIcon icon ) : void
icon MessageBoxIcon
리턴 void
			public void SetupIcon(MessageBoxIcon icon)
			{
				switch(icon)
				{
				case MessageBoxIcon.Error:
					this.AlertStyle = NSAlertStyle.Critical;
					break;
				case MessageBoxIcon.Warning :
					this.AlertStyle = NSAlertStyle.Warning;
					break;
				default :
					this.AlertStyle = NSAlertStyle.Informational;
					break;
				}
			}