¡@

Home 

c# Programming Glossary: checkedchanged

How to make Form1 label.text change when checkbox on form2 is checked?

http://stackoverflow.com/questions/15605161/how-to-make-form1-label-text-change-when-checkbox-on-form2-is-checked

improve this question You can subscribe to the event CheckedChanged of the checkbox in the Form2 instance directly from the Form1.. Form1 just before displaying the Form2 subscribe to the CheckedChanged event of the checkbox Form2 frm new Form2 frm.chkBox1.CheckedChanged.. event of the checkbox Form2 frm new Form2 frm.chkBox1.CheckedChanged new EventHandler this.ReceiveCheckedChanged frm2.ShowDialog..

Reactive Extensions for .NET (Rx): Take action once all events are completed

http://stackoverflow.com/questions/3867858/reactive-extensions-for-net-rx-take-action-once-all-events-are-completed

help. var seq Observable.FromEvent EventArgs this.checkBox CheckedChanged .Merge Observable.FromEvent KeyPressEventArgs this.textBox KeyPress.. checkChanged Observable.FromEvent EventArgs this.checkBox CheckedChanged var check1Changed Observable.FromEvent EventArgs this.checkBox1.. Observable.FromEvent EventArgs this.checkBox1 CheckedChanged var keyPress Observable.FromEvent KeyPressEventArgs this.textBox..