프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / MarkupToPDF / Controls / Common / Interfaces.cs @ fa48eb85

이력 | 보기 | 이력해설 | 다운로드 (1 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
    }
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 fa48eb85 taeseongkim
        double CommentAngle { get; set; }
40 787a4489 KangIngu
    }
41
    public interface ICircleControl : IShapeControl
42
    {
43
        void SetCenterXY();
44
    }
45
}
클립보드 이미지 추가 (최대 크기: 500 MB)