up vote 1 down vote favorite
1
share [g+] share [fb]

At the moment I have setup a custom ok cancel dialog with a drop down in c#. The ok and cancel buttons use the DialogResult property so no code behind it. What I now need to do is validate the drop down to check it isn't left empty before posting back a dialogresult.

Is this possible?

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

From here

Double-click the Closing field, and implement it as follows:

private void Second_Closing(object sender, 
    	System.ComponentModel.CancelEventArgs e)
{
    // When the user attempts to close the form, don't close it...
    e.Cancel = (dropdown.selecteditemindex >= 0);
}
link|improve this answer
feedback

Disable your OK button until the combobox is changed to a valid value.

link|improve this answer
feedback

If you want check for something, you allways need some code behind the designer. For your case, you can use a "Closing" event in the form, check what you need and if you want, set "e.Cancel = true;" - then form will not be closed.

link|improve this answer
feedback

What I have done for this is to not set the DialogResult on the OK button, but put some code behind the button.

private void OkButton_Clicked(object sender, EventArgs e)
{
    this.DialogResult = ValueComboBox.SelectedIndex >= 0
        ? DialogResult.Ok
        : DialogResult.None;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.