Baseclass for Custom Paths drawn within a Menu. Conatains basic tings like angles and radius
Inheritance: Windows.UI.Xaml.Shapes.Path
Ejemplo n.º 1
0
 /// <summary>
 /// Helper method, called when a path has changed and needs to be redrawn
 /// </summary>
 /// <param name="path"></param>
 protected static void Changed(PathBase path)
 {
     if (path.IsLoaded)
     {
         path.Redraw();
     }
 }