Runtime control moving and resizing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an application in which I need to expose runtime moving and resizing of controls. Most of the functionality that I need is exposed by the CRectTracker class in the C++ library. Are there any code samples or tutorials for calling a managed C++ from C#? Any help would be appreciated.
 
This class of yours can be included in a class library project and then do a Add Reference to this dll in your C# project. You can straightaway start using this dll written in managed C+

----- jbmeeh wrote: ----

I have an application in which I need to expose runtime moving and resizing of controls. Most of the functionality that I need is exposed by the CRectTracker class in the C++ library. Are there any code samples or tutorials for calling a managed C++ from C#? Any help would be appreciated.
 
I know how to reference the dll. I guess that I wasn't real clear on the help that I was aking for. Are there any examples of how to write a C++ class that would expose the functionality of CRectTracker?
 
Back
Top