Nexus.Client.ModManagement.Scripting.UIUtil.ShowMessageBox C# (CSharp) 메소드

ShowMessageBox() 공개 메소드

Displays a message box.
public ShowMessageBox ( string p_strMessage ) : DialogResult
p_strMessage string The message to display.
리턴 DialogResult
		public DialogResult ShowMessageBox(string p_strMessage)
		{
			return ShowMessageBox(p_strMessage, string.Empty, MessageBoxButtons.OK, MessageBoxIcon.Information);
		}

Same methods

UIUtil::ShowMessageBox ( string p_strMessage, string p_strCaption ) : DialogResult
UIUtil::ShowMessageBox ( string p_strMessage, string p_strCaption, MessageBoxButtons p_mbbButtons ) : DialogResult
UIUtil::ShowMessageBox ( string p_strMessage, string p_strCaption, MessageBoxButtons p_mbbButtons, MessageBoxIcon p_mbiIcon ) : DialogResult