I have the following scenario:
<ul>I add a ContextualTabGroup programatically at runtime. This ContextualTabGroup contains one Tab & one Group. I add Variants to this Group as follows:
Each button has both a small and large image assigned to their commands. </ul>
As I reduce the width of the window, as soon as the entire group doesn't completely fit, the group drops down to the "Collapsed" variant. It never steps down to Medium or Small. Is there something that I'm missing?
Thanks in advance!
<ul>
newGroup.Variants.Add(new GroupVariant(60, VariantSize.Medium));
newGroup.Variants.Add(new GroupVariant(110, VariantSize.Small));
As I reduce the width of the window, as soon as the entire group doesn't completely fit, the group drops down to the "Collapsed" variant. It never steps down to Medium or Small. Is there something that I'm missing?
Thanks in advance!