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.
Just got back on this project today. I also needed to change
xmlns:igSchedule="http://infragistics.com/Windows.Schedules"
to :
xmlns:igLayout="http://schemas.infragistics.com/xaml"
and everything works fine.
Thanks for your help!.
Hello,
I am just checking the progress of this issue and was wondering if you managed to achieve your goal or if you need any further assistance on the matter.
If the above suggestion helped you solve your issue please verify the thread as answered so other users may take better advantage of it.
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:
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.