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
60
add Tag in namespace
posted

Hello,

I am new with VS2010 and WPF.

I am starting an existing project and I have the error :  Tag "XamDockManager" does not exist  in XML-Namespace "http://infragistics.com/DockManager" nicht vorhanden

 

How can I add this?.

A Snippet from my code:

 

<UserControl x:Class="LkwWalter.Routing.PCClient.Controls.MainControl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             xmlns:igDock="http://infragistics.com/DockManager"
             d:DesignHeight="300" d:DesignWidth="900">

    <UserControl.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="Dictionary1.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </UserControl.Resources>

    <Grid Name="LayoutRoot" Background="Transparent" >
       
        <igDock:XamDockManager Name="xamDockManager1" Theme="Aero"
                               LayoutMode="FillContainer" Background="Transparent">

 

 

Parents
No Data
Reply
  • 54937
    Offline posted

    It sounds like you didn't add a reference to the xamDockManager assembly (e.g. for CLR4 using the NA 2010.3 release that would be InfragisticsWPF4.DockManager.v10.3.dll). You may want to start by going through the getting started section of the help.

    Note you might also get a similar message if you're in a CLR3 (e.g. target framework for the project is 3.5) and you're referencing the CLR4 assemblies (i.e. the ones that start with InfragisticsWPF4) instead of the CLR3 assemblies (the ones that start with InfragisticsWPF3).

Children