Tagged Questions
6
votes
3answers
352 views
Visual guide to System.Windows.SystemColors
All throughout the Windows UX Guide it is suggested to use the appropriet SystemColors within an application to ensure that an application's default theme is consistent with teh rest of the system. I ...
2
votes
1answer
83 views
How to show the constant for the property instead of value
Hello
I am working in VB.Net 2010 framework 2.0.
Suppose I declare a property :
Dim NewColor As Color = Color.FromArgb(150, 145, 145)
Private _myColor As Color = NewColor
Public Property MyColor() ...
2
votes
3answers
968 views
Changing system colors for a single application (Windows, .NET)
I know I should generally avoid messing up with such system settings, but my application do already use nonstandard colors and I have no influence on that. I would like to be able to add standard .NET ...
2
votes
1answer
306 views
.NET: How to get ActiveCaptionText color when window is maximized?
How do you get the ActiveCaptionText color when a window is maximized?
The color is correct when the window is restored:
But is the wrong color when the window is maximized:
How do you get the ...
2
votes
2answers
225 views
Getting Windows XP colours in .NET
I am trying to get a specific colour used by Windows XP in my .NET application.
In Windows XP, if you go the Control Panel in 'category view', on the left hand side you have some 'See Also' options ...
1
vote
1answer
162 views
Default TabItem Background Color
I want to set the background color of a TabItem Header (TabItem.Background) if certain content is not set in the tab. To accomplish this, I have a Brush property in my ViewModel that is bound to the ...