Ejemplo n.º 1
0
        public static PathAppearance Parse(Dictionary <string, string> styles)
        {
            PathAppearance pathStyle = new PathAppearance();

            pathStyle.ParseCore(styles);
            return(pathStyle);
        }
Ejemplo n.º 2
0
 public RenderedPathInfo(PathAppearance appearance, PathLocationInfo pathLocationInfo = null) {
     appearanceCore = appearance;
     pathCore = new GraphicsPath();
     locationInfoCore = pathLocationInfo ?? new PathLocationInfo();
 }
Ejemplo n.º 3
0
 public static PathAppearance Parse(Dictionary<string, string> styles) {
     PathAppearance pathStyle = new PathAppearance();
     pathStyle.ParseCore(styles);
     return pathStyle;
 }
Ejemplo n.º 4
0
 protected virtual void ParsePathStylesCore(Dictionary<string, string> styles) {
     pathAppearanceCore = PathAppearance.Parse(styles);
 }
Ejemplo n.º 5
0
 protected virtual void ParsePathStylesCore(Dictionary <string, string> styles)
 {
     pathAppearanceCore = PathAppearance.Parse(styles);
 }
Ejemplo n.º 6
0
 public RenderedPathInfo(PathAppearance appearance, PathLocationInfo pathLocationInfo = null)
 {
     appearanceCore   = appearance;
     pathCore         = new GraphicsPath();
     locationInfoCore = pathLocationInfo ?? new PathLocationInfo();
 }