c# - change ForeColor of Form -


how change forcolor of form, have set forecolor red form still displays in whte text. how change this.
refering title bar text color

the title bar "non client" area of form. non-client area of form managed windows api, , not .net. cannot changed setting property on form. change color of title bar text, need custom painting. search google terms like: non-client area painting winforms. need make calls win32 api directly work. can ideas here: http://geekswithblogs.net/kobush/articles/customborderforms.aspx , http://customerborderform.codeplex.com/wikipage?title=painting%20nonclient%20area&referringtitle=home

it easier in day (that is, when there no .net), since directly used win32 api. did it, fun. and, have since learned such things ok learning; imo recommend don't "misuse" putting in "real" application. windows has , feel, , , feel should under user's control, not developer's.


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -