Tagged Questions

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
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
258 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 ...
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
199 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 ...