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
755
Ribbon not working in Blend 4 in .NET 4, WPF4 Assembly
posted

Hi

I can't drop the ribbon on a window in Blend 4

 

The Xaml doesn't get generated.

 

When I drop the Ribbon in Visual Studio, and open the Solution afterwards in Blend I got errors

"The name XamRibbon  does not exist in the namespace "http://infragistics.com/Ribbon"

 

any hint whats going wrong ?

 

Here the whole xaml

 

<Window x:Class="MyApp.Runner.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525"
        xmlns:igRibbon="http://infragistics.com/Ribbon">
    <Grid>
       
        <igRibbon:XamRibbon Height="144" Margin="167,106,56,0" Name="xamRibbon1" VerticalAlignment="Top">
            <igRibbon:XamRibbon.ApplicationMenu>
                <igRibbon:ApplicationMenu />
            </igRibbon:XamRibbon.ApplicationMenu>
            <igRibbon:XamRibbon.QuickAccessToolbar>
                <igRibbon:QuickAccessToolbar />
            </igRibbon:XamRibbon.QuickAccessToolbar>
        </igRibbon:XamRibbon>
    </Grid>
</Window>

 

I also tried changing the name space to

<xmlns:igRibbon="clr-namespace:Infragistics.Windows.Ribbon;assembly=InfragisticsWPF4.Ribbon.v11.1">

 

but this doesn't work either :-(

In VisualStudio it works with both kinds of declaring the namespace

Any Help ??

 

Parents Reply Children
No Data