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.
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.
Just got back on this project today. I also needed to change
xmlns:igSchedule="http://infragistics.com/Windows.Schedules"
to :
and everything works fine.
Thanks for your help!.