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
170
Combobox in a Quick Access Toolbar does not get populated.
posted

I have a XamRibbon with a tab in it. In the tab, I have a RibbonGroup with a combobox in it. The combobox has a statically populated list. Now, when I add the RibbonGroup to the Quick Access Toolbar, the combobox in the QAT does not have any data populated in it.

Please find a sample xaml code for the same.

<Window x:Class="TestRibbon.Window1"
    xmlns="">schemas.microsoft.com/.../presentation"
    xmlns:x="">schemas.microsoft.com/.../xaml"
    xmlns:igRibbon="">infragistics.com/Ribbon"
    Title="Window1" Height="300" Width="300">
    <Grid>
        <igRibbon:XamRibbon Grid.Row="0" VerticalAlignment="Top" Theme="Office2k7Black" Visibility="Visible" QuickAccessToolbarLocation="AboveRibbon" IsMinimized="False">
            <igRibbon:XamRibbon.Tabs>
                <igRibbon:RibbonTabItem Header="abc">
                    <igRibbon:RibbonGroup Caption="layout">
                        <ComboBox Width="50" Height="20">
                            <ComboBoxItem>n1</ComboBoxItem>
                            <ComboBoxItem>n2</ComboBoxItem>
                            <ComboBoxItem>n3</ComboBoxItem>
                            <ComboBoxItem>n4</ComboBoxItem>
                        </ComboBox>
                    </igRibbon:RibbonGroup>
                </igRibbon:RibbonTabItem>
            </igRibbon:XamRibbon.Tabs>
        </igRibbon:XamRibbon>
    </Grid>
</Window>

I have also attached the project herewith.

Thanks in advance.

Nihar.

TestRibbon.zip
  • 170
    posted

    Hi,

    Any updates on the above issue?

    Hoping for your help,

    Thanks,

    Nihar.