My Project
gView.cs
查看本檔案說明文件.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 using System.Windows.Shapes;
7 
8 namespace ShapeLib.VShape
9 {
10  public class gView
11  {
12  public List<Shape> baseShape = new List<Shape>();
13  public List<Shape> controlShape = new List<Shape>();
14 
15 
16 
17  }
18 }
List< Shape > baseShape
Definition: gView.cs:12
List< Shape > controlShape
Definition: gView.cs:13