Hi,
I have an ExpandableGroupbox and then I add an ExpandableGroupboxPanel in the ExpandableGroupbox ,and add some ultrapanels in ExpandableGroupboxPanel , and then I create an UltraFlowLayoutManager for ExpandableGroupboxPanel for setting the ultrapanels layout . Now I need autosize the ExpandableGroupbox by the visibled ultrapanels position(the groupbox's Height is important for me), I can't find the AutoSize propety of ExpandableGroupbox, Who can help me ,thanks! I use Infragistics.Win.Misc.v13.1 and vb.net 2010.
Jason
The AutoSize property is only prevented from showing up in the Intellisense, but you can still explicitly type in the code:
this.ultraExpandableGroupBox1.AutoSize = true;
I have attached a sample that builds using this property. Let me know if this helps.