Tagged Questions

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 ...
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
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 ...
1
vote
1answer
150 views

Is there a graphical overview of the HatchStyle enumeration?

A hatch pattern is made from two colors: one defined by the BackgroundColor, which fills the background and one for the lines that form the pattern over the background defined by the ForegroundColor ...