Tagged Questions
6
votes
3answers
380 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 ...
4
votes
2answers
59 views
How to refer to BG-color, used by some Windows elements (scrollbar, pushed-in option button, etc.)?
Does anybody know how can I reference in C# a system background color, used on elements like scrollbar or pushed-in option button or tab (as the background for 'tabPage1' in the image below)?
Or, if ...
2
votes
1answer
85 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
1k 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
313 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
227 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
188 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 ...