I want to draw in WinRT (Windows 8.1) multiple circles with same size and stroke thickness. If I use Ellipse elements and set on all elements the same values (no fill color) I get circles with different stroke thickness. But they should all have the same stroke thickness. How can this be fixed?
The Ellipse is created programmatically and then added as child element to a Grid
Ellipse e = new Ellipse();
e.Stroke = new SolidColorBrush(Color.FromArgb(255, 255, 255, 255));
e.StrokeThickness = 1;
e.Width = 30;
e.Height = 30;