Shadow Line Below Menu?

  • Thread starter Thread starter Schorschi
  • Start date Start date
S

Schorschi

How do I draw a XP style shadow line below the menubar of an
application. Not a separator line, but a line that separates the menu
bar from the reset of the client area?

I know how to draw a line during the paint event, etc. via a brush or
pen, but what colors should I use so that it looks right in XP?
 
use the SystemColors enumeration

probably SystemColors.Control or SystemColors.ControlDark
 
(e-mail address removed) (Schorschi) scripsit:
How do I draw a XP style shadow line below the menubar of an
application. Not a separator line, but a line that separates the menu
bar from the reset of the client area?

I know how to draw a line during the paint event, etc. via a brush or
pen, but what colors should I use so that it looks right in XP?

Have a look at the 'SystemColors' enum.
 
Back
Top