예제 #1
0
        public IVertexCollection Clone()
        {
            var t = new VertexCollection();

            t._list.AddRange(_list);
            return(t);
        }
예제 #2
0
파일: ShapeBase.cs 프로젝트: pnt239/Untipic
        protected ShapeBase()
        {
            _vertices = new VertexCollection();

            DrawMethod   = DrawMethod.ByDragDrop;
            CanResize    = true;
            CanMove      = true;
            Location     = new PointF();
            Size         = new SizeF();
            OutlineColor = Color.Black;
            OutlineWidth = 1F;
            FillColor    = Color.Transparent;
        }