Exemplo n.º 1
0
        public Ellipse()
        {
            SvgChildren.Add(_ellipse);

            InitCommonShapeProperties();

            RegisterPropertyChangedCallback(StrokeProperty, OnStrokeChanged);
        }
Exemplo n.º 2
0
        public Rectangle()
        {
            SvgChildren.Add(_rectangle);

            InitCommonShapeProperties();
            OnRadiusXChangedPartial();
            OnRadiusYChangedPartial();
        }
Exemplo n.º 3
0
        /// <summary>
        /// Gets host for non-visual elements
        /// </summary>
        private UIElementCollection GetDefs()
        {
            if (_defs == null)
            {
                _defs = new DefsSvgElement();
                SvgChildren.Add(_defs);
            }

            return(_defs.Defs);
        }
Exemplo n.º 4
0
        public Path()
        {
            SvgChildren.Add(_path);

            InitCommonShapeProperties();
        }
Exemplo n.º 5
0
        partial void InitializePartial()
        {
            SvgChildren.Add(_line);

            InitCommonShapeProperties();
        }
Exemplo n.º 6
0
        public Ellipse()
        {
            SvgChildren.Add(_ellipse);

            InitCommonShapeProperties();
        }
Exemplo n.º 7
0
        public Polygon()
        {
            SvgChildren.Add(_polygon);

            InitCommonShapeProperties();
        }
Exemplo n.º 8
0
        public Polyline()
        {
            SvgChildren.Add(_polyline);

            InitCommonShapeProperties();
        }