Create Custom GUI in C#

  • Thread starter Thread starter Homa
  • Start date Start date
H

Homa

Hi all,
Does any one know how to create a custom window like the control
panel of PowerDVD and WinAmp in C#?

If I need to use C++ Library to do this, where should I head to?

Thanks for Concern,
Homa Wong
 
you should consider looking at using the gdi+(graphics
device interface)class. you can basically utilise this
class to modify the appeareance of your forms and
controls.
hope that helps!
 
Hi,

You can create custom-drawn controls in C#. Inherit from the Control class
and provide your own implementation of the OnPaint event handler as well as
handling of user input.
 
Back
Top