C#: How do you send OK or Cancel return messages of dialogs when not using buttons?

后端 未结 3 1996
天命终不由人
天命终不由人 2020-12-15 02:46

C#: How do you send OK or Cancel return messages of dialogs when not using buttons?

How would you return the OK message in the condition of a textbox that will proce

3条回答
  •  眼角桃花
    2020-12-15 02:53

    I assume you're using Windows Forms...

    A couple of ways.

    For OK - set AcceptButton on the form to the OK button. For Cancel - set Cancelbutton on the form to the cancel button.

    OR, you can manually set the forms DialogResult to DialogResult.OK or DialogResult.Cancel and then close the form programatically.

提交回复
热议问题