custom title bar

  • Thread starter Thread starter Furer Ramon
  • Start date Start date
F

Furer Ramon

hi every one

please i need know how to create a custom title bar like writing on title
bar and change the look of maximize button and close button and so on using
..net framework

Greets

R. Furer
 
Furer Ramon said:
please i need know how to create a custom title bar like writing
on title bar and change the look of maximize button and close
button and so on using .net framework

And just what sort of highly-specialised Application are you writing
that requires such a User Interface?

I ask simply because, in the vast majority of cases, I would suggest
that you simply /shouldn't/ be doing this in the first place!

Windows may have many [many!] faults, but a largely consistent
User Interface model is one thing it /does/ try to do well. Users who
are familiar with Windows have an expectation of how "their"
applications should look. Changing the User Interface paradigm for
no Good Reason will only serve to confuse and/or alienate these
users, often to the point where they would refuse to use your
programs.

Regards,
Phill W.
 
Furer Ramon said:
please i need know how to create a custom title bar like writing on title
bar and change the look of maximize button and close button and so on
using .net framework

Remove the form's titlebar by setting its 'BorderStyle' property to an
appropriate value. Then you can draw your own title bar onto the form and
replace the standard system buttons with your own buttons.

Move a borderless form.
<URL:http://www.dotnetrix.co.uk/misc.html>
 
Back
Top