Events

  • Thread starter Thread starter Vannela
  • Start date Start date
V

Vannela

I have got an application in an unmanaged language which i
want to convert into C# manually . Unmanaged application
has got windows,controls .etc., ok i am creating windows
and controls but how to handle the events of those
controls in C#. Some events are working fine means their
functionality is same in C# as in unmanaged application.
What should i do for the others?

Should i go for custom controls or is there any other way
to do?

Any suggestion or questions are appreciated.
 
You may want to look at the documentation for porting
applications to .NET. Some events no longer exist and
other have been renamed because they actually are a little
different. There's a whole conversion section in the
documentation that tells you what has changed to what.

Another idea would be to run the wizard and compare what
you converted manually with what it generated. You may be
able to cut-paste code for your problematic events.

Good luck.
 
Back
Top