Tagged Questions
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
414 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
903 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
274 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
2answers
292 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) ?
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
426 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
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 ...