Hello Ajay,
Alternatively this can be achieved by writing custom logic like below:public partial class Form1 : Form { Boolean expandedI = true; public Form1() { InitializeComponent(); }
private void ultraExpandableGroupBox1_ExpandedStateChanging(object sender, CancelEventArgs e) { if(expandedI) { expandedI = false; e.Cancel = true; ultraExpandableGroupBox1.Size = new Size(160, 50); } else { expandedI = true; e.Cancel = true; ultraExpandableGroupBox1.Size = new Size(200, 185); } }
Please let me know if I may be of further assistance.
Sincerely,Sahaja KokkalagaddaAssociate Software Developer
After investigating not collapsing UltraExpandableGroupBox completely idea and doing some research, this has been determined to be a product idea. You can suggest new product ideas for future versions (or vote for existing ones) at <http://ideas.infragistics.com>.Submitting your idea will allow you to communicate directly with our product management team, track the progress of your idea at any time, see how many votes it got, read comments from other developers in the community, and see if someone from the product team has additional questions for you.Remember when submitting your idea to explain the context in which a feature would be used and why it is needed as well as anything that would prevent you from accomplishing this today. You can even add screenshots to build a stronger case. Remember that for your suggestion to be successful, you need other members of the community to vote for it. You can also link back to this thread for additional details.
Thank you in advance to submitting your product idea.