Skybound.Gecko.PromptService.AlertCheck C# (CSharp) 메소드

AlertCheck() 공개 메소드

public AlertCheck ( nsIDOMWindow aParent, string aDialogTitle, string aText, string aCheckMsg, bool &aCheckState ) : void
aParent nsIDOMWindow
aDialogTitle string
aText string
aCheckMsg string
aCheckState bool
리턴 void
        public void AlertCheck(nsIDOMWindow aParent, string aDialogTitle, string aText, string aCheckMsg, ref bool aCheckState)
        {
            ConfirmDialog dialog = new ConfirmDialog(aText, aDialogTitle, "OK", null, null, aCheckMsg);

            dialog.ShowDialog();

            aCheckState = dialog.CheckBoxChecked;
        }