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
675
Can't seem to find the right assembly to reference
posted

I've added the file:

"C:\Program Files (x86)\Infragistics\NetAdvantage 2012.1\WPF\DefaultStyles\Schedule\generic.shared.xaml"

to a project where I'm using the XamOutlookCalendarView so that I could re-template the appearance of appointments. However, can't seem to figure out which assembly to reference so that it will compile.

Here is the error I get:

Error 1 The tag 'ScheduleResourceString' does not exist in XML namespace 'http://infragistics.com/Windows.Schedules.Primitives'. Line 33 Position 3.

Here are my existing references:

 

Parents
No Data
Reply
  • 27093
    Verified Answer
    posted

    Hello,

     

    I have been looking into your issue and what I did to get this running after dragging the .xaml files in my solution was to change the xaml defined namespaces of the error triggering classes like igSchedulePrim:AppointmentDialogCore. What I did is replace the reference from:

     

    xmlns:igSchedulePrim="http://infragistics.com/Windows.Schedules.Primitives"

     

    to the specially declared ones like:

     

    xmlns:igSchedulePrim="http://schemas.infragistics.com/xaml/primitives"

     

    also from:

     

    xmlns:igLayout="http://infragistics.com/Windows.Layouts"

     

    to:

     

    xmlns:igLayout="http://schemas.infragistics.com/xaml"

     

    Basically these namespaces are meant to reference all IG controls (http://schemas.infragistics.com/xaml) and all IG primitive elements (http://schemas.infragistics.com/xaml/primitives) of the WPF and Silverlight shared ones.

     

    I have also attached a working sample project (Schedule_generic.zip) for your reference.

     

    Please let me know if I can be of any further assistance on the matter.

    Schedule_generic.zip
Children