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
415
Could not create instance of type 'XamRibbon'
posted

Saw someone else had this same error in 2008 but didnt see a solution.  I have a demo app with the following references:

Infragistics3.Wpf.Editors.v9.2, Infragistics3.Wpf.Ribbon.v9.2 and Infragistics3.Wpf.v9.2. 

My XAML:

<Window x:Class="RibbonTest.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:igRibbon="http://infragistics.com/Ribbon"
    Title="Window1" Height="300" Width="300">
    <Grid>
        <igRibbon:XamRibbon Theme="Office2k7Black">
            <igRibbon:XamRibbon.Tabs>
                <igRibbon:RibbonTabItem Header="Format" />
                <igRibbon:RibbonTabItem Header="Insert" />
            </igRibbon:XamRibbon.Tabs>
        </igRibbon:XamRibbon>
    </Grid>
</Window>

About as default as I could possibly get it, with the XamRibbon code cut and pasted from the XamFeatureBrowser.  The application actually works, when I run it I see the ribbon.  But it always shows the 'Could not create instance of type 'XamRibbon' error.

What am I doing wrong?