Tagged Questions

9
votes
2answers
558 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
4answers
3k views

WPF - How can I make a brush that paints graph-paper-like squares?

How might I create a brush that paints a regular, repeated grid of 1-unit thick lines spaced evenly in both the horizontal and vertical axes? Imagine graph paper, if you will. Ideally the solution ...
8
votes
3answers
3k views

How do I implement a custom Brush in WPF?

Where can I find out enough info about how Brushes work to implement my own System.Windows.Media.Brush? I can handle all of the freezable baggage, but it's not really obvious what I need to override ...
5
votes
2answers
103 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 ...
5
votes
2answers
1k views

WPF 'magic' negating brush?

I have a gradient that changes its colors, I want the text inside it should always be visible. I rather doing it dynamically if there is any out-the-box resource; I want a 'magic brush' that negates ...
5
votes
1answer
1k views

WPF SolidColorBrush dilemma

Does anyone know how to convert a string that represents a color into a SolidColorBrush in wpf? For e.g: string colorRed = "Red"; SolidColorBrush fromStringToColor = new SolidColorBrush(colorRed); ...
4
votes
3answers
53 views

Why does brush have only 3 hexa value?

For example, in this page there is code such as: <SolidColorBrush x:Key="DisabledBorderBrush" Color="#AAA" /> Why does the color property only have 3 hex value? Doesn't color normally have 6 ...
4
votes
2answers
801 views

WPF Gradient in 2 directions

If i want to make the edges of a selected item in a Listbox look smooth I do this: <Setter Property="Background" TargetName="Bd"> <Setter.Value> <LinearGradientBrush ...
3
votes
1answer
85 views

TextBlock brush giving incorrect color

I have a TextBlock and a Rectangle, both sitting in an empty WPF4 window. The TextBlock's Foreground and the Rectangle's Fill are both set to a SolidColorBrush with value #80800000. This is what it ...
3
votes
3answers
830 views

Combined solidcolor brush

Is there a way to create a kind of "solidcolorbrush" that is a mixture of 2 solidcolor brushes? For the back color, i would like to be able to use a DynamicReference to some other brush. While the ...
2
votes
1answer
148 views

Which WPF Brush to use and how to create it

I have a WPF 3D application (C# .NET 4.0) that has a lot of 3D geometries. Now I need to color these geometries by applying a texture. The source for the texture is one large .PNG file like the ...
2
votes
1answer
470 views

WPF BorderBrush on TextBox goes away once set on IsMouseOver Trigger

I have the below XAML which attempts to set the border of all TextBoxes in the window to red OnMouseOver. What happens is when the mouse is over the textbox the FontSize and Foreground properties are ...
2
votes
1answer
287 views

Bind to Color of a Brush

I am trying to animate the Fill property of a path. What I have so far is a ColorAnimation that works well. The target property is (Shape.Fill).(SolidColorBrush.Color) and I set it to a value of ...
2
votes
2answers
811 views

WPF Edit Resource

Hi is there any way to change a Resource brush from code or via some binding? what I want to do is change the color of my "main" brush when a button is clicked. Thanks a lot! Edit: Its a ...
1
vote
3answers
96 views

How to generate 12 different Brush Colors at run time (12 is a number that may vary)

I want to generate 12 different visible Brush Colors in WPF in my code behind and the number of colors which is initially 12 may vary as the application evolves i.e. I want to generate as many ...
1
vote
1answer
139 views

Binding to a brush cause memory leack?

Let's say I have following classes in my app. MainWindow.xaml.cs public partial class MainWindow : Window { public SolidColorBrush Brush { get; set; } public MainWindow() { ...
1
vote
2answers
192 views

Reference to another Brush from one Brush in xaml

Is it possible to directly reference to a Brush value from another Brush in my resource dictionary, without using a Color definition (or to be exact, copy one brush resource into another)? For ...
1
vote
0answers
81 views

Can a brush draw outside of an wpf element?

is there any possibility to draw outside of an wpf element with a brush, E.g. <Polyline StrokeThickness="10" Points="100,100 200,100 200,0"> <Polyline.Stroke> ...
1
vote
3answers
121 views

Apply Brush to Two Objects At Once

I'd like to apply a Brush (LinearGradientBrush in this case) to two or more objects (TextBlocks) at once. The effect that I'd like is something like this: Edit I cannot simply apply the same brush ...
1
vote
1answer
249 views

Is there a MergedGradientBrush in wpf?

Suppose I had two brushes. One that was a linear gradient brush that was from Dark to light One was a radial brush that went from Dark to light. How could I merge the brushes so that when I apply ...
1
vote
2answers
625 views

Creating a custom fill brush in XAML

How do I create the following shape in XAML? <Ellipse Height="100" Width="100"> <Ellipse.Fill> ??? </Ellipse.Fill> </Ellipse> LinearGradientBrush can't be ...
1
vote
3answers
3k views

Creating a WPF ValueConverter for a Brush

On the Nerd Plus Art blog today, there was a post about creating WPF Resources for arrows, which the author uses frequently. I have a side project that has Back and Forward buttons, so I thought that ...
1
vote
1answer
949 views

Drawing a 2px Hatch brush in WPF

I'm trying to build a WPF DrawingBrush that will draw a hatch pattern using two 1px by 1px rectangles. The resulting pattern would look like the background on classic Macintosh apps. Here's what I'm ...
0
votes
0answers
26 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
57 views

Dynamic Brushes in XAML

I have a definition for a data template that looks as follows: <DataTemplate DataType="{x:Type HeatMap:BlockItem}"> <Grid Visibility="{Binding IsVisible}"> <Border ...
0
votes
1answer
91 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
30 views

resource dictionary null brush

I am trying to have to "skin" resource dictionaries for a wpf application that I would like to be able to switch between. I want to be able to set the background property of several user controls to a ...
0
votes
1answer
182 views

How to use LinearGradientBrush and Background

I'm trying to paint a background of my WPF window using LinearGradientBrush, however my code doesn't work. Here is the code LinearGradientBrush gradientBrush = new LinearGradientBrush( ...
0
votes
3answers
277 views

Repeat a background brush in WPF

and thank you. This question is very similar to this old, unanswered question here: WPF - How to paint notebook-like lines as TextBox background? However, it is not the same - not exactly. I would ...
0
votes
2answers
212 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
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
2answers
151 views

Can I access a named fill gradient in a WPF Datatemplate?

I have a DataTemplate with a number of layered text and graphic objects. One of them is a glow effect that comes from the RadialGradientBrush Fill property of a Rectangle. At first, I named the ...
0
votes
1answer
131 views

WPF BoolToBrushConverter with 4 values and 4 Brushes to return?

I bind a TextBox`s Brush Property to an IsValid Dependency Property in a UserControl with a BoolToBrushConverter. My IsValid would need 4 states because I need 4 different brushes to return from the ...
0
votes
1answer
214 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
190 views

WPF - Relative transform on brush results in jagged lines

After applying a relative rotate transform (of 45 degrees) on a brush in WPF, I am left with extremely jagged lines. Has anyone else experienced this? Did you find a solution?
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
130 views

Painting a different brush over the intesection of two separate shape objects

Is there a way in WPF when two shape objects overlap each other that the overlapping portions of the object get painted in a different brush? Thank you, Adam