My Project
IShapeUI.cs
查看本檔案說明文件.
1 using System;
2 using System.Collections;
3 using System.Collections.Generic;
4 using System.Linq;
5 using System.Text;
6 using System.Threading.Tasks;
7 
8 namespace ShapeLib.VShape
9 {
10  interface IShapeUI
11  {
12  ArrayList getMenuItem();
13  ShapeObj Create(String svg);
14  void changeProperty(String prop, string value);
15 
16  String SVGString(); //for save
17  // Boolean IsDelete{ get;set;}
18 
19 
20  }
21 }
void changeProperty(String prop, string value)
某一類的形狀.包含UI 的界面,繪製方式.更新方式.新增方式
Definition: ShapeObj.cs:59
ShapeObj Create(String svg)