My Project
IForm.cs
查看本檔案說明文件.
1 using System;
2 using System.Collections.Generic;
3 using System.Drawing;
4 using System.Linq;
5 using System.Text;
6 using System.Threading.Tasks;
7 using System.Windows.Controls;
8 using System.Windows.Forms;
9 
10 
11 
12 
13 namespace ShapeLib.VShape
14 {
15  public delegate IForm getForm();
16 
17  public interface IForm
18  {
19  Canvas drawControl { get; }
20  System.Windows.Controls.UserControl getRoot { get; }
21  void Show();
22 
23  }
24 }
Canvas drawControl
Definition: IForm.cs:19
System.Windows.Controls.UserControl getRoot
Definition: IForm.cs:20
delegate IForm getForm()