Tagged Questions

9
votes
2answers
565 views

Brushed steel brush in WPF?

I am looking for ideas to create a WPF Brush with a brushed steel look, similar to the MacOSX Panther style, preferably without resorting to an ImageBrush. Is there a funky way to use a GradientBrush ...
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 ...
4
votes
3answers
2k views

What is the best way to pick a random brush from the Brushes collection in C#?

What is the best way to pick a random brush from the System.Drawing.Brushes collection in C#?
3
votes
1answer
2k views

c# radial gradient brush effect in GDI and winforms

I have created a c# windows application and written 75% of the code. The program allows the user to create a flow chart, and will shade the flow chart shapes according to their status. I wanted them ...
2
votes
5answers
176 views

C# Drawing, Strange Behaviour

the following code is fairly straight forward - it fills a design surface with randomnly selected pixels - nothing special (ignore the XXXXXXX's in the 2nd method for now). private void ...
2
votes
2answers
5k views

Convert System.Windows.Media.Brush to System.Drawing.Brush

How can I convert a System.Windows.Media.Brush to System.Drawing.Brush? I'm trying to get the color of a system.windows.media.brush formatted to a System.Drawing.Color object. The below solution ...
1
vote
1answer
260 views

Weird behavior of LinearGradientBrush

I want to fill a Rectangle with a LinearGradientBrush. With some Rectangles I get some strange behavior. Example: Rectangle rect = new Rectangle( 20, 20, 20, 34 ); LinearGradientMode mode = ...
1
vote
4answers
465 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
3answers
1k views

Disposing a static brush

I'm writing a biorhythm app. To test it i have a form with a Button and a PictureBox. When I click on the button i do myPictureBox.Image = GetBiorhythm2(); Which runs ok for the first time, but on ...
0
votes
0answers
29 views

wpf polyline multi brushes

Is it possible to set multi brushes for wpf polyline? For example I would like to draw triangle using polyline and set different color for each edge, or maybe there is other way to achieve it?
0
votes
1answer
92 views

Brush to Brush Animation

i managed to find out how to make a wpf animation - transition between two colors. Its called ColorAnimation and works well. ColorAnimation animation = new ColorAnimation ...
0
votes
2answers
216 views

WPF TileBrush and DrawingContext.DrawRectangle — relative to upper-left of rectangle?

When using DrawingContext.DrawRectangle with a TileBrush, I noticed that the top-left of the rectangle is not the top-left of the underlying image. This occurs with both a DrawingBrush and an ...
0
votes
1answer
78 views

BorderBrush and Background not match

I am having a problem with BorderBrush and Background. They both are set to the same gradient but as border starts higher, they don't match. How do I make it match? These are 5 buttons in the image: ...
0
votes
1answer
113 views

C# How to store Brush/Pen information in a database table

I need to store Brush/Pen information about several shapes in a database table, one row for each layer I draw. I was thinking of two schemes: BRUSH_INFO PEN_INFO ...
0
votes
0answers
264 views

GDI+ winforms C#

I wanna make a paintbrush application in winforms using c# and mouse events. Can somebody help in coding it.
0
votes
4answers
1k views

How do I combine brushes in WPF?

I have two brushes. I don't know wath type of brushes they are. They can be ImageBrushes, SolidBrushes or VisualBrushes. I have each in a variable of the "Brush" type. I need to combine two brushes. ...
0
votes
1answer
278 views

CreatePatternBrush / Ellipse not working on WinMobile device but on emulator

To draw a circular part of a bitmap on the screen, I use a PatternBrush created from the bitmap to fill an ellipse. I use P/Invoke to the native functions because there seems to be a bug in CF2.0 if ...