From: Leon P. on
Hello All,

I have MFC-based application featuring:
1) Flow of "Screens" where screens are implemented as a MFC's
CDialog-inherited classes loading PNG or BMP images.
2) Dialog's child controls also loads PNG or BMP images.

What is the best practice to handle the same functionality in .NET/C#?


Thanks,


From: Ajay Kalra on
You should post this in C# newsgroup to get appropriate responses. In .Net,
you can use WinForms to make the app. Equivalent of a child control is a
UserControl in .Net. Its much easier to code and more powerful than MFC. WPF
is the newest technology that is mean to replace WinForm. That might be
worth a look.

--
Ajay



"Leon P." <moi5imail(a)gmail.com> wrote in message
news:OqE1rozsIHA.4876(a)TK2MSFTNGP02.phx.gbl...
> Hello All,
>
> I have MFC-based application featuring:
> 1) Flow of "Screens" where screens are implemented as a MFC's
> CDialog-inherited classes loading PNG or BMP images.
> 2) Dialog's child controls also loads PNG or BMP images.
>
> What is the best practice to handle the same functionality in .NET/C#?
>
>
> Thanks,
>
>