I am working in C# 4.5 - Winform. My question is specific to C# WinForm.
I want to bind a Control's property to another control's property value on the same form.
I have a GroupBox and a Check Box. When Check box is checked then group box should be enabled and when CheckBox in un-checked then GroupBox should be disabled.
However this task can be fulfilled by implement checkbox "CheckedChanged" event. But i want to accomplish this without writing any code.
I dont know it is possible or not. If possible then please provide solution.