I am new to C#, I am creating a application in which there is a need of using two forms
one is Mainform
and other is DialogForm
.
The DialogForm
has two buttons btnYes
and btnNo
.
whenever the user clicks the close button, FormClosing
Event invokes in which I am calling the DialogForm
as shown below:
DialogForm ex = new DialogForm();
ex.ShowDialog(this);
Now I want to give e.cancel=false
for btnYes
and e.cancel=true
for btnNo
. (this explained by my sir, only basics)
I know how to give functions to a Button
which is in same Form
but I dont know how to if the Form
is different.
I have gone through some links but as I am new to c#, I can't understand it. If you atleast provide me some links that would be appreciable.
Thanks in advance.