Hi,
Is there a way to add xamChart in .NET 2.0 VB/C# application? I am working on our product conversion to WPF, and their is a new requirement on the existing application which is a .NET 2.0 solution. I want to provide a solution that can be applied to the existing and the new wpf application. Please assist as this will introduce an avenue to show the client bits and pieces of new Infragistics controls.
you can do this using the ElementHost class. see here: http://nayyeri.net/blog/host-wpf-controls-in-windows-forms/
you will probably get better results using the UltraChart, though, as that was designed for Windows Forms.
ElementHost, not a problem. For this to work, means upgrading solution/project to target .NET Framework 3.0/3.5. I wanted to keep the project framework at 2.0. Unfortunately, there is no way of doing that. Thanks for the input.
i think such an application could be compiled against CLR 2.0, but i guess you couldn't assume certain assemblies like WindowsFormsIntegration, PresentationCore, etc. would be on the target machines. but i think you can still deploy these dlls and run them from the application's "bin" folder. i haven't tested that myself, though, so i could be wrong.
Hey,
I thought of that but I might need to run the dependency walker to make sure that these assemblies can get registered by themselves. I probably try something like that out after the project. Thanks,