tags:

views:

460

answers:

1

I would like to change window form border color (the border with the form title). the example i found in codeplex is too much and confusing. can any help me on something simple

+4  A: 

Unfortunately, since the form border is drawn by the Operating System, this is a complicated task. There is no real way around that.

The CodePlex Project for Drawing Custom Borders makes this very easy, though. Just build the form using SkinnedForm from that project instead of a standard Form, and it should work - you really don't need to do anything different in your code.

Reed Copsey
Thanks for the reply Reed... even with soure cod from codeplex im still having problem to change the top border colour or rather all the border colour.
don