I want to resize my pathgeometry figure according to screen size set by user.
Basically want to update the figure dynamically or make it responsive.
Currently I am having figure like
<PathGeometry x:Key="path1" Figures="M 100,0 A 100,100 0 0 1 100,250" />
I am using this path as:
<Path Stroke="Red" StrokeThickness="1" Canvas.Left="5" Canvas.Top="5" Data="{StaticResource path1}"/>
I want to make this path resized according to my screen size.Please suggest