My Project
ShapeLib
VShape
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
}
ShapeLib.VShape.IShapeUI.getMenuItem
ArrayList getMenuItem()
ShapeLib.VShape.IShapeUI.changeProperty
void changeProperty(String prop, string value)
ShapeLib.VShape.ShapeObj
某一類的形狀.包含UI 的界面,繪製方式.更新方式.新增方式
Definition:
ShapeObj.cs:59
ShapeLib.VShape.IShapeUI.Create
ShapeObj Create(String svg)
ShapeLib.VShape
Definition:
eraser.cs:13
ShapeLib.VShape.IShapeUI
Definition:
IShapeUI.cs:10
ShapeLib.VShape.IShapeUI.SVGString
String SVGString()
產生者:
1.8.15