Tagged Questions

8
votes
8answers
12k views

Convert string to Brushes/Brush name in C#

I have a configuration file where a developer can specify a text color by passing in a string: <text value="Hello, World" color="Red"/> Rather than have a gigantic switch statement look for ...
5
votes
2answers
105 views

calculate selection brush color in WPF

I have noticed when setting the selection of a text box in wpf to red, and using a color picker to verify the color, the color faded to #FF9999. I have a specific color my client requires for the ...
1
vote
4answers
466 views

compare a brush and color

if (backBrush == SystemColors.ActiveCaption) This fails. Says you can't compare a brush and a color. How do I find the color of the brush?
1
vote
1answer
545 views

Qt Qbrush issue

What is the difference in the following code, QGraphicsScene * scence = new QGraphicsScene(); QBrush *brush = new QBrush((QColor(60,20,20))); scence->setBackgroundBrush(*brush); ...
0
votes
1answer
32 views

Qt opacity color brush?

Particular in my case, I want to paint a line to a QGraphicsScene using adLine(). Befor that I have paint something on the scene and I want the last big line on the top of all of these but i still can ...
0
votes
1answer
530 views

ListView in vsReport mode colouring of Items and rows

I want to color one row in gray and the other in white. I have the following code but there is white space of vertical lines of columns in Windows 7. How do I color all rows? procedure ...
0
votes
1answer
215 views

Referring to a brush resource in a VisualState ColorAnimation

I'm trying to style the Calendar control and need the buttons to adopt the colors we already have defined as named resources. But the storyboards require colors in the ColorAnimation, and I'm not sure ...
0
votes
1answer
707 views

Line with different solid colors, solidcolorbrush with gradient stops but without the gradients

In Silverlight (version 3 preview), I want to create a Line with different solid colors, so no gradients between colors. Basically I want to do the following: <Line X1="0" X2="500" ...