Tagged Questions
The brushes tag has no wiki summary.
9
votes
1answer
2k views
Wpf, using a StaticResource SolidColorBrush to define the Gradient Stop Colors
I am creating some wpf resource dictionaries with all the styles for an application! I have a few LinearGradientBrushes, where the color is set directly in the LinearGradientBrush reference as ...
6
votes
2answers
141 views
Is rendering a lot of repeated images more or less performant than using brushes in WPF?
An application our company is working on currently displays many rectangle shapes with gradients to draw 'Tiles'. An internal discussion came about that posed a question of performance. These tiles ...
4
votes
4answers
401 views
Pick a Random Brush
I'm looking for a method to pick a random Brush in Brushes collection (Aqua,Azure, ...Black,...). Any clue?
3
votes
3answers
85 views
Window background color: appears darker than specified?
I'm trying to play around with colors in WPF and the form's background color. Without doing ANYTHING ELSE (no code behind, deriving from another class, etc), I create a brand new default Windows ...
2
votes
3answers
50 views
Is there a “Pens” class to complement “Brushes” and “Colors” in WPF?
There isn't one called Pens, that's for sure, but it's too odd not to find it. Is it really absent, or am I being blind?
(I'm just looking for a convenience class - for example, Colors.Red and ...
2
votes
1answer
152 views
WPF: looking for list of each control's states and brushes
Is there a list somewhere of all the common states for each control? We're restyling them and it would be nice to not have to hunt through each control to figure this out.
Basically a list like:
...
2
votes
1answer
254 views
Preventing deformation in XAML Grid's background when resizing
I am writing a brush in XAML that I can use to paint the background of a Grid to create a banner. It looks like this:
I want the brush to "stretch" with the Grid when the Window resizes, but I do ...
2
votes
1answer
902 views
Why doesn't this WPF code generate a context menu?
Perhaps I'm having a Post-Ballmer-Peak Moment.
I'm hoping that someone can help point out the obvious to me.
Why does this code generate a context menu on right click:
<Canvas ...
1
vote
1answer
267 views
Setting borderbrush to LinearGradientBrush in WPF
I'm new to WPF and still having some basic problems.
I have a control from devcomponents that defaults to a blue border. My textboxes etc. have a more grey colour. I want the devcomponents control ...
1
vote
1answer
106 views
What is the best way to copy / clone brushes?
Before drawing a shape on a canvas I have a preview that displays how the shape will look. I can adjust the opacity and then draw the shape. I may then wish to draw a second shape with a different ...
1
vote
1answer
256 views
C# Fill out a Rectangle with points
Hi
I want to Fill out a Rectangle. Normally i can use:
g.FillRectangle(Brushes.Green, x1, y1, x2, y2);
But I don't want to fill it completly out with a green color, I want to fill it out with ...
1
vote
2answers
291 views
WPF - WIth animation change from LinearGradientBrush to SolidColorBrush
Is it possible with an animation to change the Ellipse.Fill from a LinearGradientBrush to a SolidColorBrush or change the gradientStops within the LinearGradientBrush?
1
vote
2answers
2k views
Linear Gradient Brush Fade WPF
I have a brush that colors the background of a header. I like the way the brush looks but would like it to fade to transparent in the bottom third. Any ideas how to do this?
<LinearGradientBrush
...
1
vote
3answers
2k views
WPF:Setting background of panel with custom color code
IN WPF,I can set the background of a stack panel using the below code
stackPanelFlasher .Background =Brushes.Aqua
How can i set the color as a hex color code (ex :#C7DFFC) ?
1
vote
5answers
263 views
OpenGL equivalent of GDI's HatchBrush or PatternBrush?
I have a VB6 application (please don't laugh) which does a lot of drawing via BitBlt and the standard VB6 drawing functions. I am running up against performance issues (yes, I do the regular tricks ...
1
vote
1answer
705 views
Silverlight Drawingbrush
I'm new in Silverlight, and I'm looking for something like a drawing brush on Silverlight without success. I saw Tamir Khason blog on building a drawing brush in Silverlight and i download the code ...
0
votes
1answer
35 views
Brushes thread safety
According to the usual Thread safety statement.
Any public static (Shared in Visual Basic) members of this type are
thread safe
Which makes Brushes.White thread safe but not new ...
0
votes
1answer
149 views
PhotoShop Define Brush Preset [closed]
I'm trying to make a brush that gives a sparkle effect. It's just a circle brush with a cross in the middle. Any way, when I try to define the brush preset, it says "Could not complete the command ...
0
votes
1answer
87 views
Count the number of displayed VisualBrush visuals
I am working on a CAD program in WPF and I'm looking for a way to count the number of controls displayed when a particular brush is rendered.
So say I have an Ellipse:
<Ellipse ...
0
votes
1answer
425 views
Create Custom Brush With Png(transparent) Image and a Background Color
I want to create a custom brush in WPF that will be applied to a rectangle.
Fill= myCustomBrush.
theCustomBrush contains a png image (ImageBrush) ,and contanins a color in background ...
0
votes
1answer
197 views
Creating and using a new Brush or color using sliders and dependency properties in C#
I'm working on a project which is a basic WPF "Paint" app. I have three options, draw an Ellipse, draw a Line, or draw a 'shape' (a line where closed sections are filled in). These three options are ...
0
votes
1answer
252 views
Ellipse default Fill color
I use an ImageBrush to fill an Ellipse.
<ImageBrush Stretch="Uniform" ImageSource="{Binding Image}" />
Since I use uniform stretching my image doesn't fill the whole area of the ellipse and ...
0
votes
3answers
1k views
Using multiple brushes within a single GeometryDrawing in WPF
Is it possible to use multiple brushes within a single GeometryDrawing? I have several geometries that I want to draw with different brushes, and it's rather verbose to have to declare an individual ...
0
votes
2answers
2k views
WPF Change Style's Brush Color
I have the following styles in WPF to draw and color a box, which is a custom control with various PART_Name items defined in a ResourceDictionary:
<ResourceDictionary>
.
.
.
<Brush ...