Tagged Questions

2
votes
3answers
115 views

Loading a combo box with all system colors in wpf

I have created combo box that I would like to load with all of the standard colors. I would like to do this in the xaml.cs file rather than the straight XAML. I have found many examples to do this in ...
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
967 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
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
110 views

Remove system colors from TcxDBColorCombobox

I have a TcxDBColorCombobox and I want the drop down to not include the system colors like clBtnFace, so it only includes colors like clRed. Additionally I would like it to include clWindow and ...
0
votes
1answer
418 views

Reset TextBox.Background to default in WPF so it still gets updated when system settings change

I have a TextBox that I wish to reset its Background property to its default value after changing it to a different colour. I have tried setting it to SystemColors.WindowBrush, but then, if the ...
0
votes
2answers
194 views

Is it possible to use theme colors in Windows Forms apps?

I normally make use of System Colors whenever possible when designing Windows Forms applications just so that it'll fit in with the user's preferences. But is it possible to use Theme Colors? I ...