Tagged Questions
The geometrydrawing tag has no wiki summary.
4
votes
1answer
324 views
What are the letters in a XAML Geometry attribute called?
I am defining a XAML DrawingBrush resource and I want to draw a custom shape. I found the following GeometryDrawing example:
<GeometryDrawing Geometry="M0,0.1 L0.1,0 1,0.9, 0.9,1z" Brush="Gray" ...
0
votes
1answer
13 views
How to save Geometry as image?
How to save Geometry as image?
For example i have List<Geometry>.
I want it to be as follows:
for (int i = 0; i < GeometryList.Count; i++)
{
Pen TestPen = new Pen(Brushes.Black, 1);
...
0
votes
0answers
46 views
Dynamically assign GeometryDrawing as content of user control in WPF
I would like a user control's content to be one of several statically defined geometry drawings. The geometry drawing to use should depend on a property in the viewmodel for the control, and only ...
0
votes
1answer
126 views
How to use the GeometryDrawing?
I want to draw the word A~Z by GeometryDrawing...
And anybody can taught me about it?
thanks...
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
1answer
184 views
Using a DrawingImage as Icon for Multiple MenuItems
I have some icon resources as DrawingImages that is made up of many GeometryDrawings. I have File MenuItems and ToolBar buttons that use these images via resource bindings to MenuItem.Icon. ...