Please folks: how can i add a container control to a ribbon group without it taking all the vertical space? I want it to appear below the previous control.
Hello John,
Please try to set the InstanceProps.MinimumSizeOnRibbon and InstanceProps.PreferredSizeOnRibbon properties of ContainerControlTool to Normal.
See below lines of code:
ultraToolbarsManager1.Ribbon.Tabs[0].Groups[0].Tools[
"ControlContainerTool1"].InstanceProps.MinimumSizeOnRibbon = Infragistics.Win.UltraWinToolbars.RibbonToolSize.Normal;
ultraToolbarsManager1.Ribbon.Tabs[0].Groups[0].Tools
"ControlContainerTool1"].InstanceProps.PreferredSizeOnRibbon = Infragistics.Win.UltraWinToolbars.RibbonToolSize.Normal;
Asma Developer Support EngineerInfragisticswww.infragistics.com/support
So simple and I definitely tried those option but in isolation of eachother. Thanks so much for taking the time to answer this one for me - I know it frustrates you folk to get questions that are answered in documentation (as I'm sure this must be).