markus / MarkupToPDF / Controls / Common / Interfaces.cs @ 71d7e0bf
이력 | 보기 | 이력해설 | 다운로드 (1.03 KB)
1 | 787a4489 | KangIngu | using System; |
---|---|---|---|
2 | using System.Net; |
||
3 | using System.Windows; |
||
4 | using System.Windows.Controls; |
||
5 | using System.Windows.Documents; |
||
6 | using System.Windows.Ink; |
||
7 | using System.Windows.Input; |
||
8 | using System.Windows.Media; |
||
9 | using System.Windows.Media.Animation; |
||
10 | using System.Windows.Shapes; |
||
11 | using System.Collections.Generic; |
||
12 | |||
13 | namespace MarkupToPDF.Controls.Common |
||
14 | { |
||
15 | |||
16 | public interface INormal |
||
17 | { |
||
18 | List<Point> PointSet { get; set; } |
||
19 | double Width { get; set; } |
||
20 | double Height { get; set; } |
||
21 | Point StartPoint { get; set; } |
||
22 | Point EndPoint { get; set; } |
||
23 | void updateControl(); |
||
24 | } |
||
25 | |||
26 | public interface ICloudControl : IPath |
||
27 | { |
||
28 | double Toler { get; set; } |
||
29 | double ArcLength { get; set; } |
||
30 | void DrawingCloud(); |
||
31 | } |
||
32 | |||
33 | public interface IDashControl : IPath |
||
34 | { |
||
35 | DoubleCollection DashSize { get; set; } |
||
36 | } |
||
37 | |||
38 | public interface IViewBox : IPath |
||
39 | { |
||
40 | double Angle { get; set; } |
||
41 | } |
||
42 | public interface ICircleControl : IShapeControl |
||
43 | { |
||
44 | void SetCenterXY(); |
||
45 | } |
||
46 | } |