Hello everybody.
what is the event for minimize maximaize action to the group box control?
Thanks,
Igal.
Hi,
If you want to get the events when you minimize/maximize the group box, you can use for example these two events:
- ExpandedStateChanged;
- ExpandedStateChanging;
if you want to minimize/maximize the group box with code, you can use the property:
- ultraExpandableGroupBox1.Expanded =
true / false;
Regards