Hello!
We recently purchased NetAdvantage for Silverlight Data Visualization 2009 Vol. 2
Our current application on development is using Infragistics.Silverlight.DataVisualization.Map.v9.1.dll along with other related DLLs ... and everything is working fine with our Infragistics Map Module.
On our Silverlight Web application project, I replaced Infragistics.Silverlight.DataVisualization.Map.v9.1.dll with Infragistics.Silverlight.DataVisualization.Map.v9.2.dll along with other related DLLs
and got errors compiling in particular ... The type or namespace 'MapElementPropertyChangedEventArgs' could not be found (are you missing a using directive or an assembly reference?)
private void theMap_ElementPropertyChanged(object sender, MapElementPropertyChangedEventArgs e)
( works with 9.1 but NOT with v9.2 )
ANY HELP IS VERY MUCH APPRECIATED.
THANK YOU.
trifee
2 Dec 2009
11:13am EST
In 9.2 the XamWebDock control was moved in to the Infragistics.Silverlight.DataVisualization.Controls assembly and namespace. To resolve the issue you'll need to update the references in your application.
For more information, please see the XamWebMap section in the following online documentation:
<http://help.infragistics.com/NetAdvantage/DV/Current/CLR3.5/?page=2009_Volume_2.html>
I have the same issue. When i open the samples using the XamWebMap, in desing mode on Expression Web i had this error message:
I'm using the trial version 9.2
Thanks you for your time.
http://community.infragistics.com/forums/p/35432/216585.aspx#216585
Thank you so much! Your suggestion has helped me solve my problem!
I have another issue though with v9.2 ...
The following code work for v9.1 but NOT for v9.2 ( igMap:XamWebDock.Edge .. )
<igMap:MapNavigationPane Grid.Row="1" igMap:XamWebDock.Edge="InsideRight" />
and
<igMap:MapThumbnailPane Grid.Row="1" igMap:XamWebDock.Edge="InsideBottom" />
Your help is much appreciated. THANKS!
TRIFEE
change all references from MapElementPropertyChangedEventArgs to PropertyChangedEventArgs, and MapElementPropertyChangedEventHandler to PropertyChangedEventHandler, and it should work.