Hi,
In our project we have hard coded the namespace as below
xmlns:igBase="clr-namespace:Infragistics.Controls.Primitives;assembly=InfragisticsSL4.v11.1"
The above namespace assembly version has been hard coded. When I upgrade infragistics control (Consider new assembly is InfragisticsSL4.v12.2), do I need to change hard coded version number from InfragisticsSL4.v11.1 to InfragisticsSL4.v12.2
If I am not changing from InfragisticsSL4.v11.1 to InfragisticsSL4.v12.2 what will happen?
Thanks guys.
Just to add to what Stefan suggested: You could also use the URI namespace syntax that's available in Silverlight 4 and above:
xmlns:ig="http://schemas.infragistics.com/xaml"xmlns:igPrim="http://schemas.infragistics.com/xaml/primitives"
Using this syntax you won't have to hard code the assembly name in your XAML code.
You could take a look at the following link for more information:
http://help.infragistics.com/Help/NetAdvantage/Silverlight/2010.2/CLR4.0/html/Whats_New_SL4_URI_Schemas.html
Hope this helps,
Hello,
Thank you for your post. I have been looking into it and I can say that you should change the namespace if you upgrade to 11.2, because otherwise you will get an error that the element you are using doesn’t exist in the following namespace.
Hope this helps you.