During the simple conversion from VS2008 to VS2010 my grids went from great looking to horrible looking. Most of them reverted back to the default colors which consist of no color/formatting.
Has anyone experienced this and what feat of formatting changes do I need to apply?
Thanks - Glenn
Hello Glenn,
I have been looking into your issue and even though there doesn’t appear to be any other appearances of it, I gave it a though and the only thing that came to mind was that the conversion might have changed your resource’s BuildAction property. For further reference you can check: http://msdn.microsoft.com/en-us/library/0c6xyb66(v=vs.80).aspx . Besides from that the Infragistics controls do not have any Visual Studio version related functionality that I know of.
Please let me know if I can be of any further assistance.
Petar,
Thanks for reviewing. I did find the assembly path moved during the upgrade which affected the styles. If other experience the same, the below may be of assistance. I use the ResourceDictionary to define the URL path for the styles. Changes to this line are impact the style resolution.
ResourceDictionary r1 = new ResourceDictionary();
r1.Source = new Uri("/Sprego_VS2010;component/Styles/styles.xaml", UriKind.RelativeOrAbsolute);
Glenn Long