Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
530
Auto-Sizing of RibbonGroup
posted

I have tried to set the height of the xamRibbon, RibbonTabItem, RibbonGroup, and ToolHorizontalItemPanel and cannot seem to get the ribbongroup to fit to the its contents, which are cut off at the botton of the RibbonGroup.  Any ideas how I can have the RibbonGroup, RibbonTabItem, and xamRibbon to automatically resize to their contents?

Parents
  • 530
    posted

    Here's the challenge... set a property or two so that all of the buttons are visible without changing the WrpaPanel's MaxWidth property.

    <igRibbon:XamRibbon Name="xamRibbon1">
                <igRibbon:XamRibbon.ApplicationMenu>
                    <igRibbon:ApplicationMenu />
                </igRibbon:XamRibbon.ApplicationMenu>
                <igRibbon:XamRibbon.QuickAccessToolbar>
                    <igRibbon:QuickAccessToolbar />
                </igRibbon:XamRibbon.QuickAccessToolbar>
                <igRibbon:RibbonTabItem Header="Test">
                    <igRibbon:RibbonGroup >
                        <WrapPanel MaxWidth="100">
                            <Button>Test</Button>
                            <Button>Test</Button>
                            <Button>Test</Button>
                            <Button>Test</Button>
                            <Button>Test</Button>
                            <Button>Test</Button>
                            <Button>Test</Button>
                            <Button>Test</Button>
                            <Button>Test</Button>
                            <Button>Test</Button>
                            <Button>Test</Button>
                            <Button>Test</Button>
                            <Button>Test</Button>
                            <Button>Test</Button>
                        </WrapPanel>
                    </igRibbon:RibbonGroup>
                </igRibbon:RibbonTabItem>
            </igRibbon:XamRibbon>

Reply Children