Designing a new form

T

thechaosengine

Hi all,

Does anyone know what would be involved in redesigning the look and feel
of the typical windows application form in .net? I've seen applications that
have totally redisigned the look and feel of the form, including the minimize
and maximize and close buttons. The new styles work identically on all the
windows versions that I've seen (98, 2000 and XP)

Can anyone tell me what I would need to do to redesign the Title Bar at the
very least?

Thanks all

Kindest Regards

tce
 
P

Paul Cheetham

Hi,

You need to draw all the elements of the form yourself. You need to
override the paint events. (As well as the standard paint event ther are
seperate ones for the non-client areas such as the title bar etc.)
You may also need to override the mouse hit-test events.

It's not a trivial task to do all this, but if you design it right in a
class derived from Form you should be able to use it wherever you want.


Paul
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top