markus / MarkupToPDF / Controls / Common / Interfaces.cs @ fa48eb85
1 |
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 |
} |
24 |
|
25 |
public interface ICloudControl : IPath |
26 |
{ |
27 |
double Toler { get; set; } |
28 |
double ArcLength { get; set; } |
29 |
void DrawingCloud(); |
30 |
} |
31 |
|
32 |
public interface IDashControl : IPath |
33 |
{ |
34 |
DoubleCollection DashSize { get; set; } |
35 |
} |
36 |
|
37 |
public interface IViewBox : IPath |
38 |
{ |
39 |
double CommentAngle { get; set; } |
40 |
} |
41 |
public interface ICircleControl : IShapeControl |
42 |
{ |
43 |
void SetCenterXY(); |
44 |
} |
45 |
} |