프로젝트

일반

사용자정보

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

markus / KCOM / Controls / AdornerFinal.xaml.cs @ 3c4acae8

이력 | 보기 | 이력해설 | 다운로드 (79.6 KB)

1 787a4489 KangIngu
using KCOM.Common;
2 d128ceb2 humkyung
using KCOM.Events;
3 787a4489 KangIngu
using MarkupToPDF.Common;
4 684ef11c ljiyeon
using MarkupToPDF.Controls.Cad;
5 787a4489 KangIngu
using MarkupToPDF.Controls.Common;
6
using MarkupToPDF.Controls.Etc;
7
using MarkupToPDF.Controls.Line;
8 105359ce ljiyeon
using MarkupToPDF.Controls.Parsing;
9 787a4489 KangIngu
using MarkupToPDF.Controls.Polygon;
10
using MarkupToPDF.Controls.Shape;
11
using MarkupToPDF.Controls.Text;
12
using System;
13
using System.Collections.Generic;
14 53880c83 ljiyeon
using System.Diagnostics;
15 787a4489 KangIngu
using System.Linq;
16
using System.Text;
17 8e5a4a6a taeseongkim
using System.Threading.Tasks;
18 787a4489 KangIngu
using System.Windows;
19
using System.Windows.Controls;
20
using System.Windows.Controls.Primitives;
21
using System.Windows.Input;
22
using System.Windows.Media;
23
using Telerik.Windows.Controls;
24
25
namespace KCOM.Controls
26
{
27 f513c215 humkyung
    public class MyThumb : Thumb
28
    {
29
        public MyThumb()
30
        {
31
            this.Opacity = 0.6;
32
            this.MouseEnter += MyThumb_MouseEnter;
33
            this.MouseLeave += MyThumb_MouseLeave;
34
        }
35
36 3dbace4e taeseongkim
        public void Translate(double dx, double dy, double angle)
37
        {
38
            var ratotePoint = MathHelper.RotatePoint(new Point(dx, dy), new Point(), angle);
39
40
            Canvas.SetLeft(this, Canvas.GetLeft(this) + ratotePoint.X);
41
            Canvas.SetTop(this, Canvas.GetTop(this) + ratotePoint.Y);
42
        }
43
44
45 d2114d3b humkyung
        /// <summary>
46 f513c215 humkyung
        /// </summary>
47
        /// <param name="sender"></param>
48
        /// <param name="e"></param>
49
        private void MyThumb_MouseLeave(object sender, MouseEventArgs e)
50
        {
51
            this.Opacity = 0.6;
52
        }
53
54
        /// <summary>
55
        /// 
56
        /// </summary>
57
        /// <param name="sender"></param>
58
        /// <param name="e"></param>
59
        private void MyThumb_MouseEnter(object sender, MouseEventArgs e)
60
        {
61
            this.Opacity = 1.0;
62
        }
63
    }
64
65 787a4489 KangIngu
    /// <summary>
66
    /// Interaction logic for AdornerFinal.xaml
67
    /// </summary>
68
    public class AdornerMember
69
    {
70
        public UIElement DrawingData { get; set; }
71
        public ControlType Drawingtype { get; set; }
72
        public double DrawingAngle { get; set; }
73 f513c215 humkyung
        public List<MyThumb> ThumbList { get; set; }
74 c8e9b3e4 ljiyeon
        public string Symbol_ID { get; set; }
75 53880c83 ljiyeon
        public long Group_ID { get; set; }
76 508c3ac5 humkyung
77
        /// <summary>
78
        /// update thumb
79
        /// </summary>
80
        public void UpdateThumb()
81
        {
82
            var path = this.DrawingData as IPath;
83
            for (int i = 0; i < path.PointSet.Count; ++i)
84
            {
85
                Canvas.SetLeft(this.ThumbList[i], path.PointSet[i].X);
86
                Canvas.SetTop(this.ThumbList[i], path.PointSet[i].Y);
87
            }
88
89 3b797b23 humkyung
            if (this.DrawingData is ArrowTextControl ArrowTextCtrl)
90 508c3ac5 humkyung
            {
91 3b797b23 humkyung
                if (!ArrowTextCtrl.isTrans) //trans가 True인경우
92 508c3ac5 humkyung
                {
93
                    List<Point> ps = new List<Point>();
94
95
                    var temp = this.DrawingData as ArrowTextControl;
96
                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) + temp.BoxWidth / 2, Canvas.GetTop(temp.Base_TextBox))); //상단
97
                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) + temp.BoxWidth / 2, Canvas.GetTop(temp.Base_TextBox) + temp.BoxHeight)); // 하단
98
                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox), Canvas.GetTop(temp.Base_TextBox) + temp.BoxHeight / 2)); //좌단
99
                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) + temp.BoxWidth, Canvas.GetTop(temp.Base_TextBox) + temp.BoxHeight / 2));  //우단
100
101
                    if (temp.isFixed)
102
                    {
103
                        var endP = MathSet.getNearPoint(ps, temp.MidPoint);
104
                        var testP = endP;
105
                        if (ps[0] == endP) //상단
106
                        {
107
                            testP = new Point(endP.X, endP.Y - 50);
108
                        }
109
                        else if (ps[1] == endP) //하단
110
                        {
111
                            testP = new Point(endP.X, endP.Y + 50);
112
                        }
113
                        else if (ps[2] == endP) //좌단
114
                        {
115
                            testP = new Point(endP.X - 50, endP.Y);
116
                        }
117
                        else if (ps[3] == endP) //우단
118
                        {
119
                            testP = new Point(endP.X + 50, endP.Y);
120
                        }
121
                        Canvas.SetLeft(this.ThumbList[1], testP.X);
122
                        Canvas.SetTop(this.ThumbList[1], testP.Y);
123
                    }
124
                    else
125
                    {
126
                        var endP = MathSet.getNearPoint(ps, temp.MidPoint);
127
                        var tempP = MathSet.getMiddlePoint(temp.StartPoint, endP);
128
                        Canvas.SetLeft(this.ThumbList[1], tempP.X);
129
                        Canvas.SetTop(this.ThumbList[1], tempP.Y);
130
                    }
131
                }
132
            }
133
        }
134 554aae3b humkyung
135
        /// <summary>
136
        /// rotate members about given position and angle
137
        /// </summary>
138
        /// <param name="at"></param>
139
        /// <param name="angle">in degree</param>
140
        public void RotateAbout(Point at, double angle)
141
        {
142
            for (int i = 0; i < (this.DrawingData as IPath).PointSet.Count; i++)
143
            {
144
                (this.DrawingData as IPath).PointSet[i] = MathSet.RotateAbout(at, (this.DrawingData as IPath).PointSet[i], angle);
145
            }
146
            (this.DrawingData as CommentUserInfo).UpdateControl();
147
148
            this.UpdateThumb();
149
        }
150 787a4489 KangIngu
    }
151 4913851c humkyung
152 787a4489 KangIngu
    public partial class AdornerFinal : UserControl
153
    {
154
        public TextBox editTextBox { get; set; }
155
        #region 공용 인스턴스
156 4913851c humkyung
        public List<AdornerMember> Members { get; } = new List<AdornerMember>();
157 787a4489 KangIngu
        public Dictionary<Thumb, DragData> _dragData = new Dictionary<Thumb, DragData>();
158 b643fcca taeseongkim
159 edef7af2 humkyung
        private List<double> AlignedAngles {get;} = new List<double>() { 0, 30, 45, 60, 90, 120, 135, 150, 180, 210, 225, 240, 270, 300, 315, 330, 360 };
160
161 e65e8c5c humkyung
        /// <summary>
162
        /// 회전 시작할때의 각도
163
        /// </summary>
164 b643fcca taeseongkim
165 e65e8c5c humkyung
        private double angleValue;
166 b643fcca taeseongkim
        public double AngleValue { get => angleValue;
167
            set
168
            {
169
                if(angleValue != value)
170
                {
171
                    angleValue = value;
172
                }
173
            }
174
        }
175
176 e65e8c5c humkyung
        /// <summary>
177
        /// Axis Lock을 적용하지 않는 실제 회전 각도
178
        /// </summary>
179
        private double _ActualAngle { get; set; }
180
181 787a4489 KangIngu
        public bool IsTextAngle = false;
182
        public Rect BorderSize { get; set; }
183
        public bool TextCompensation = false;
184
        public bool isDragging { get; set; }
185
        public Thumb DraggerThumb { get; set; }
186
        public RadDropDownButton dropData;
187
        public RadCalendar dropCalendar;
188
        public Thumb mainDragThumb { get; set; }
189
190 4913851c humkyung
        private bool disposed;
191
192 787a4489 KangIngu
        public Point reSizePoint { get; set; }
193 e65e8c5c humkyung
        private Point RotatedPoint { get; set; } /// 2018.05.09 added by humkyung
194 0d00f9c8 humkyung
        private Point MouseDownPoint = new Point();
195
        private Point CurrentMousePoint = new Point();
196 787a4489 KangIngu
        #endregion
197
        #region 생성자
198
        private void RadDropDownButton_Loaded(object sender, RoutedEventArgs e)
199
        {
200
            dropData = sender as RadDropDownButton;
201
        }
202 4913851c humkyung
203 787a4489 KangIngu
        private void Date_Calendar_Loaded(object sender, RoutedEventArgs e)
204
        {
205
            dropCalendar = sender as RadCalendar;
206
            dropCalendar.SelectionChanged += (sen, ea) =>
207
            {
208
                dropData.IsOpen = false;
209 4913851c humkyung
                if ((this.Members.First() as AdornerMember).DrawingData.GetType().Name == "DateControl")
210 787a4489 KangIngu
                {
211 4913851c humkyung
                    DateControl data = (this.Members.First() as AdornerMember).DrawingData as DateControl;
212 787a4489 KangIngu
                    data.Text = dropCalendar.SelectedDate.Value.ToShortDateString();
213
                }
214
            };
215
        }
216 4913851c humkyung
217 787a4489 KangIngu
        public AdornerFinal()
218
        {
219
            InitializeComponent();
220
            BorderSize = new Rect();
221
            _dragData.Add(rotateTop, new DragData() { CursorAngle = 0, DragType = DragType.Rotate, RotateIsLeft = true, RotateIsTop = true });
222 4913851c humkyung
        }
223
224
        ~AdornerFinal()
225
        {
226
            this.Dispose(false);
227
        }
228
229
        public void Dispose()
230
        {
231
            this.Dispose(true);
232
            GC.SuppressFinalize(this);
233
        }
234
235
        protected virtual void Dispose(bool disposing)
236
        {
237
            if (this.disposed) return;
238
            if (disposing)
239
            {
240
                foreach (var member in this.Members)
241
                {
242
                    if(!Common.ViewerDataModel.Instance.MarkupControls_USER.Contains(member.DrawingData))
243
                        Common.ViewerDataModel.Instance.MarkupControls_USER.Add(member.DrawingData as CommentUserInfo);
244
                }
245
                // IDisposable 인터페이스를 구현하는 멤버들을 여기서 정리합니다.
246
            }
247
            // .NET Framework에 의하여 관리되지 않는 외부 리소스들을 여기서 정리합니다.
248
            this.disposed = true;
249 787a4489 KangIngu
        }
250
251
        void DragThumb_Loaded(object sender, RoutedEventArgs e)
252
        {
253
            mainDragThumb = DragThumb;
254
        }
255
256
        public AdornerFinal(CommentUserInfo objectData) : this()
257
        {
258
            InitializeComponent();
259
            objectData.IsHitTestVisible = false;
260 1305c420 taeseongkim
261 787a4489 KangIngu
            if ((objectData as ArrowTextControl) != null)
262
            {
263
                (objectData as ArrowTextControl).Base_TextBox.Focusable = true;
264
            }
265 1305c420 taeseongkim
266 787a4489 KangIngu
            Canvas.SetZIndex(objectData, 84);
267
            try
268
            {
269 05009a0e ljiyeon
                ViewerDataModel.Instance.MarkupControls_USER.Remove(objectData);
270 787a4489 KangIngu
                this.ContainerContent.Children.Add(objectData);
271
            }
272 1066bae3 ljiyeon
            catch (Exception ex)
273 787a4489 KangIngu
            {
274
275
            }
276 1066bae3 ljiyeon
           
277 787a4489 KangIngu
            SetAdornerMember(objectData as CommentUserInfo);
278
            this.Focus();
279
        }
280 4913851c humkyung
281 9b7cda70 KangIngu
        public AdornerFinal(List<CommentUserInfo> objectData) : this()
282 787a4489 KangIngu
        {
283
            InitializeComponent();
284
            foreach (var item in objectData)
285
            {
286
                //item.IsHitTestVisible = false;
287
                if ((item as ArrowTextControl) != null)
288
                {
289
                    (item as ArrowTextControl).Base_TextBox.Focusable = true;
290
                }
291
                try
292
                {
293 a0bab669 KangIngu
                    Canvas.SetZIndex(item, 80);
294 05009a0e ljiyeon
                    ViewerDataModel.Instance.MarkupControls_USER.Remove(item);
295 787a4489 KangIngu
                    this.ContainerContent.Children.Add(item);
296
                }
297 53880c83 ljiyeon
                catch //(Exception ex)
298 787a4489 KangIngu
                {
299
                }
300 1066bae3 ljiyeon
                finally
301
                {
302
                    
303
                }
304 787a4489 KangIngu
            }
305 4913851c humkyung
            this.SetAdornerMember(objectData);
306 787a4489 KangIngu
            this.Focus();
307
        }
308
309 62b6bcde humkyung
        public Point Centeroid
310
        {
311
            get
312
            {
313
                List<Point> pts = new List<Point>();
314
315
                #region 센터 포인트 구하기 (그룹핑)
316
                foreach (var item in this.Members)
317
                {
318
                    if (item.DrawingData.GetType().Name == "TextControl")
319
                    {
320
                        if (AngleValue == 0)
321
                        {
322 fa48eb85 taeseongkim
                            AngleValue = (item.DrawingData as TextControl).CommentAngle;
323 62b6bcde humkyung
                        }
324
                        double X = Canvas.GetLeft((item.DrawingData as TextControl));
325
                        double Y = Canvas.GetTop((item.DrawingData as TextControl));
326
                        pts.Add(new Point(X, Y));
327
                    }
328
                    else
329
                    {
330
                        pts.AddRange((item.DrawingData as IPath).PointSet);
331
                    }
332
                }
333
                #endregion
334
335
                return MathSet.FindCentroid(pts);
336
            }
337
        }
338
339 b643fcca taeseongkim
        #endregion
340
        #region 메서드
341
        public Rect getAdornerSize()
342 787a4489 KangIngu
        {
343
            return BorderSize;
344
        }
345
        public void addMemberControl(UIElement objectData)
346
        {
347
            this.ContainerContent.Children.Add(objectData);
348
            SetAdornerMember(objectData as CommentUserInfo);
349
            this.Focus();
350
        }
351 902faaea taeseongkim
352
        private void TextControlLostFocus(object sender,RoutedEventArgs e)
353
        {
354
            TextCompensation = false;
355
            BorderUpdate();
356
357
            if (sender is TextBox)
358
            {
359
                if ((sender as TextBox).Text == "") //보류
360
                {
361
                    this.ContainerContent.Children.Remove((sender as TextBox).Parent as MarkupToPDF.Common.CommentUserInfo);
362
                    this.Visibility = Visibility.Collapsed;
363
                }
364
            }
365
        }
366
367
        private void TextControlPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
368
        {
369 24c5e56c taeseongkim
            if (sender is TextControl)
370 902faaea taeseongkim
            {
371
                TextCompensation = true;
372
                BorderUpdate();
373
            }
374
        }
375
376
        private void TextControlSelectionChanged(object sender, RoutedEventArgs e)
377
        {
378
            BorderUpdate();
379
        }
380
381 3b797b23 humkyung
        
382
        private void ViewBoxRotate(UIElement member)
383
        {
384
            AdornerBorder.RenderTransformOrigin = new Point(0.5, 0.5);
385
            DragThumb.RenderTransformOrigin = new Point(0.5, 0.5);
386
            AdornerBorder.RenderTransform = new RotateTransform() { Angle = (member as IViewBox).CommentAngle };
387
            DragThumb.RenderTransform = new RotateTransform() { Angle = (member as IViewBox).CommentAngle };
388
        }
389
390 787a4489 KangIngu
        /// <summary>
391
        /// UIElement를 종류에 맞게 등록시킴
392
        /// </summary>
393
        /// <param name="member">UIElement 타입으로 BaseLayer에 있는 것들이 들어옵니다.</param>
394
        public void SetAdornerMember(MarkupToPDF.Common.CommentUserInfo member)
395 53880c83 ljiyeon
        {
396 787a4489 KangIngu
            switch (member.GetType().Name)
397
            {
398
                #region 컨트롤 조건
399 554aae3b humkyung
                case "LineControl":
400
                case "PolygonControl":
401 787a4489 KangIngu
                case "ArrowControl":
402 554aae3b humkyung
                case "ArcControl":
403
                case "ArrowArcControl":
404
                case "ArrowControl_Multi":
405
                case "RectangleControl":
406
                case "TriControl":
407
                case "CircleControl":
408
                case "CloudControl":
409
                case "RectCloudControl":
410
                case "InkControl":
411
                case "InsideWhiteControl":
412
                case "OverlapWhiteControl":
413
                case "ClipWhiteControl":
414
                case "CoordinateControl":
415
                    this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = member.ControlType, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
416 e65e8c5c humkyung
                    _ActualAngle = AngleValue = member.CommentAngle;
417 787a4489 KangIngu
                    break;
418
                case "ArrowTextControl":
419 4913851c humkyung
                    this.Members.Add(new AdornerMember
420 53880c83 ljiyeon
                    {
421
                        DrawingData = member,
422
                        Drawingtype = ControlType.ArrowTextControl,
423 f513c215 humkyung
                        ThumbList = new List<MyThumb>(),
424 53880c83 ljiyeon
                        Symbol_ID = member.SymbolID,
425
                        Group_ID = member.GroupID,
426
                    });
427 787a4489 KangIngu
                    (member as ArrowTextControl).Base_TextBox.IsHitTestVisible = false;
428 e65e8c5c humkyung
                    _ActualAngle = AngleValue = (member as ArrowTextControl).CommentAngle;
429 902faaea taeseongkim
430
                    ((ArrowTextControl)member).Base_TextBox.LostFocus += TextControlLostFocus;
431 787a4489 KangIngu
                    break;
432 554aae3b humkyung
                case "ImgControl":
433 2d2252ba ljiyeon
                    this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = member.ControlType, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
434 e65e8c5c humkyung
                    _ActualAngle = AngleValue = (member as ImgControl).CommentAngle;
435 2d2252ba ljiyeon
                    break;
436 787a4489 KangIngu
                case "DateControl":
437 2d2252ba ljiyeon
                    this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = member.ControlType, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
438 e65e8c5c humkyung
                    _ActualAngle = AngleValue = (member as DateControl).CommentAngle;
439 2d2252ba ljiyeon
                    break;
440 787a4489 KangIngu
                case "SignControl":
441 2d2252ba ljiyeon
                    this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = member.ControlType, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
442 e65e8c5c humkyung
                    _ActualAngle = AngleValue = (member as SignControl).CommentAngle;
443 2d2252ba ljiyeon
                    break;
444 787a4489 KangIngu
                case "SymControl":
445 2d2252ba ljiyeon
                    this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = member.ControlType, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
446 e65e8c5c humkyung
                    _ActualAngle = AngleValue = (member as SymControl).CommentAngle;
447 2d2252ba ljiyeon
                    break;
448 787a4489 KangIngu
                case "SymControlN":
449 554aae3b humkyung
                    this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = member.ControlType, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
450 e65e8c5c humkyung
                    _ActualAngle = AngleValue = (member as SymControlN).CommentAngle;
451 787a4489 KangIngu
                    break;
452
                case "TextControl":
453 f513c215 humkyung
                    this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.TextControl, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
454 787a4489 KangIngu
                    RectangleGeometry Data = new RectangleGeometry
455
                    {
456
                        Rect = new Rect()
457
                        {
458
                            X = Canvas.GetLeft((member as TextControl)),
459
                            Y = Canvas.GetTop((member as TextControl)),
460
                            Width = (member as TextControl).Base_TextBlock.ActualWidth / 2,
461
                            Height = (member as TextControl).Base_TextBlock.ActualHeight / 2,
462
                        }
463
                    };
464
                    Point endPointV = new Point(Data.Bounds.Right, Data.Bounds.Bottom);
465
                    Point middle = MathSet.getMiddlePoint((member as TextControl).StartPoint, endPointV);
466
467
468
                    DragThumb.RenderTransformOrigin = new Point(0.0, 0.0);
469
                    DragThumb.RenderTransform = new RotateTransform()
470
                    {
471 fa48eb85 taeseongkim
                        Angle = (member as TextControl).CommentAngle,
472 787a4489 KangIngu
                    };
473
474
                    AdornerBorder.RenderTransformOrigin = new Point(0.0, 0.0);
475
                    AdornerBorder.RenderTransform = new RotateTransform()
476
                    {
477 fa48eb85 taeseongkim
                        Angle = (member as TextControl).CommentAngle,
478 787a4489 KangIngu
                    };
479 902faaea taeseongkim
480
                    ((TextControl)member).PropertyChanged += TextControlPropertyChanged;
481
                    ((TextControl)member).Base_TextBox.LostFocus += TextControlLostFocus;
482 787a4489 KangIngu
                    break;
483
                default:
484
                    break;
485
                    #endregion
486
            }
487 554aae3b humkyung
488 787a4489 KangIngu
            if (member.GetType().Name == "TextControl")
489
            {
490
                TextControl content = ((TextControl)member);
491
                content.StartPoint = new Point(Canvas.GetLeft(content), Canvas.GetTop(content));
492
                content.EndPoint = content.StartPoint;
493
            }
494
            else
495
            {
496
                RegistryPoint(member);
497
            }
498
            BorderUpdate();
499 4913851c humkyung
500 ab7fe8c0 humkyung
            if (Common.ViewerDataModel.Instance.MarkupControls_USER.Contains(member))
501
                Common.ViewerDataModel.Instance.MarkupControls_USER.Remove(member);
502 787a4489 KangIngu
        }
503
504 4913851c humkyung
505 787a4489 KangIngu
        public void SetAdornerMember(List<CommentUserInfo> members)
506
        {
507
            foreach (var member in members)
508
            {
509
                switch (member.GetType().Name)
510
                {
511
                    #region 컨트롤 조건
512 53880c83 ljiyeon
                    case "LineControl":
513 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.SingleLine, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
514 53880c83 ljiyeon
                        break;
515
                    case "ImgControl":
516 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.ImgControl, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
517 787a4489 KangIngu
                        break;
518
                    case "ArrowControl":
519 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.ArrowLine, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
520 787a4489 KangIngu
                        break;
521 53880c83 ljiyeon
                    case "PolygonControl":
522 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.PolygonControl, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
523 787a4489 KangIngu
                        break;
524
                    case "ArrowTextControl":
525 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.ArrowTextControl, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
526 787a4489 KangIngu
                        (member as ArrowTextControl).Base_TextBox.IsHitTestVisible = false;
527
                        break;
528
                    case "ArcControl":
529 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.ArcLine, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
530 787a4489 KangIngu
                        break;
531 40b3ce25 ljiyeon
                    case "ArrowArcControl":
532 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.ArcArrow, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
533 40b3ce25 ljiyeon
                        break;
534 787a4489 KangIngu
                    case "DateControl":
535 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.Date, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
536 787a4489 KangIngu
                        break;
537
                    case "ArrowControl_Multi":
538 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.ArrowMultiLine, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
539 787a4489 KangIngu
                        break;
540
                    case "RectangleControl":
541 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.Rectangle, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
542 787a4489 KangIngu
                        break;
543
                    case "TriControl":
544 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.Triangle, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
545 787a4489 KangIngu
                        break;
546
                    case "CircleControl":
547 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.Circle, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
548 787a4489 KangIngu
                        break;
549
                    case "CloudControl":
550 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.PolygonCloud, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
551 787a4489 KangIngu
                        break;
552
                    case "RectCloudControl":
553 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.RectCloud, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
554 787a4489 KangIngu
                        break;
555
                    case "SignControl":
556 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.Sign, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
557 787a4489 KangIngu
                        break;
558
                    case "SymControl":
559 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.Symbol, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
560 787a4489 KangIngu
                        break;
561
                    case "SymControlN":
562 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.Stamp, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
563 787a4489 KangIngu
                        break;
564 53880c83 ljiyeon
                    case "InkControl":
565 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.Ink, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
566 787a4489 KangIngu
                        break;
567
                    case "TextControl":
568 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.TextControl, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
569 787a4489 KangIngu
570 902faaea taeseongkim
                        (member as TextControl).PropertyChanged += TextControlPropertyChanged;
571
                        (member as TextControl).Base_TextBox.SelectionChanged += TextControlSelectionChanged;
572
573
                        //Observable.FromEventPattern(((TextControl)member).Base_TextBox, "SelectionChanged").Subscribe(a =>
574
                        //{
575
                        //    BorderUpdate();
576
                        //});
577
                        //Observable.FromEventPattern(((TextControl)member), "PropertyChanged").Subscribe(a =>
578
                        //{
579
                        //    BorderUpdate();
580
                        //    try
581
                        //    {
582
                        //        ((TextControl)member).Base_TextBlock.TextDecorations = ((TextControl)member).UnderLine; 
583
                        //    }
584
                        //    catch (Exception)
585
                        //    {
586
587
                        //    }
588
589
                        //});
590
                        //Observable.FromEventPattern(((TextControl)member).Base_TextBox, "SelectionChanged").Subscribe(a =>
591
                        //{
592
                        //    BorderUpdate();
593
                        //});
594 787a4489 KangIngu
                        break;
595 684ef11c ljiyeon
                    case "InsideWhiteControl":
596 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.InsideWhite, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
597 684ef11c ljiyeon
                        break;
598
                    case "OverlapWhiteControl":
599 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.OverlapWhite, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
600 684ef11c ljiyeon
                        break;
601
                    case "ClipWhiteControl":
602 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.ClipWhite, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
603 684ef11c ljiyeon
                        break;
604
                    case "CoordinateControl":
605 f513c215 humkyung
                        this.Members.Add(new AdornerMember { DrawingData = member, Drawingtype = ControlType.Coordinate, ThumbList = new List<MyThumb>(), Symbol_ID = member.SymbolID, Group_ID = member.GroupID });
606 684ef11c ljiyeon
                        break;
607 787a4489 KangIngu
                    default:
608
                        break;
609
                        #endregion
610
                }
611
                if (member.GetType().Name == "TextControl")
612
                {
613
                    TextControl content = ((TextControl)member);
614
                    content.StartPoint = new Point(Canvas.GetLeft(content), Canvas.GetTop(content));
615
                    content.EndPoint = content.StartPoint;
616
                }
617
                else
618
                {
619
                    RegistryPoint(member, members.Count);
620
                }
621 4913851c humkyung
622 ab7fe8c0 humkyung
                if (Common.ViewerDataModel.Instance.MarkupControls_USER.Contains(member))
623
                    Common.ViewerDataModel.Instance.MarkupControls_USER.Remove(member); /// remove commment from mycontrols
624 787a4489 KangIngu
            }
625
626
            BorderUpdate();
627
        }
628
629 902faaea taeseongkim
630 787a4489 KangIngu
        /// <summary>
631
        /// Border 를 갱신
632
        /// </summary>
633
        public void BorderUpdate()
634
        {
635
            AdornerBorder.MinWidth = 10;
636
            AdornerBorder.MinHeight = 10;
637
638 992a98b4 KangIngu
            double minX = double.MaxValue;
639
            double minY = double.MaxValue;
640
            double maxX = double.MinValue;
641 a7bd032b 이지연
            double maxY = double.MinValue; 
642 e59e6c8e 이지연
            double lineSize = 0;
643
            double marginSize = 0;
644 4913851c humkyung
            if (this.Members.Count == 1)
645 787a4489 KangIngu
            {
646 3b797b23 humkyung
                if (this.Members[0].DrawingData.GetType().Name == "TextControl")
647 787a4489 KangIngu
                {
648 3b797b23 humkyung
                    if ((this.Members[0].DrawingData as TextControl).CommentAngle != 0)
649 787a4489 KangIngu
                    {
650 3b797b23 humkyung
                        trRotate.Angle = (this.Members[0].DrawingData as TextControl).CommentAngle;
651
                        trRotateThumb.Angle = (this.Members[0].DrawingData as TextControl).CommentAngle;
652 787a4489 KangIngu
                    }
653
                    else
654
                    {
655
                        trRotate.Angle = 0;
656
                        trRotateThumb.Angle = 0;
657
                    }
658
                }
659
            }
660 3b797b23 humkyung
661 4913851c humkyung
            foreach (var item in this.Members)
662 787a4489 KangIngu
            {
663
                UIElement currentControl = (item as AdornerMember).DrawingData;
664 a7bd032b 이지연
                
665 b643fcca taeseongkim
                Point startP = (currentControl as IPath).StartPoint;
666
                Point endP = (currentControl as IPath).EndPoint;
667
668 902faaea taeseongkim
                // ViewerDataModel.Instance.Angle = MathSet.returnAngle(startP, ref endP, ViewerDataModel.Instance.IsPressShift);
669
670
                // 컨트롤의 angle변환시 상단 anglecontrol에 출력
671 4f017ed3 taeseongkim
                ViewerDataModel.Instance.MarkupAngle = (currentControl as CommentUserInfo).CommentAngle;
672 b643fcca taeseongkim
673 787a4489 KangIngu
                if (item.DrawingData.GetType().Name == "TextControl")
674
                {
675
                    double textControlWidth;
676
                    double textControlHeight;
677 e59e6c8e 이지연
                             
678 787a4489 KangIngu
                    if (((currentControl as TextControl).Base_TextBox.ActualWidth) == 0)
679
                    {
680
                        textControlWidth = ((currentControl as TextControl).Base_TextBlock.ActualWidth);
681
                        textControlHeight = ((currentControl as TextControl).Base_TextBlock.ActualHeight);
682
                    }
683
                    else
684
                    {
685
                        textControlWidth = ((currentControl as TextControl).Base_TextBox.ActualWidth);
686
                        textControlHeight = ((currentControl as TextControl).Base_TextBox.ActualHeight);
687
                    }
688 29010418 ljiyeon
                    
689 787a4489 KangIngu
                    if ((currentControl as TextControl).EndPoint.X < minX)
690
                    {
691
                        minX = (currentControl as TextControl).EndPoint.X;
692
                    }
693 fa48eb85 taeseongkim
694 787a4489 KangIngu
                    if ((currentControl as TextControl).EndPoint.Y < minY)
695
                    {
696
                        minY = (currentControl as TextControl).EndPoint.Y;
697
                    }
698 fa48eb85 taeseongkim
699 787a4489 KangIngu
                    if (textControlWidth + (currentControl as TextControl).EndPoint.X > maxX)
700
                    {
701
                        maxX = textControlWidth + (currentControl as TextControl).EndPoint.X;
702
                    }
703 fa48eb85 taeseongkim
704 787a4489 KangIngu
                    if (textControlHeight + (currentControl as TextControl).EndPoint.Y > maxY)
705
                    {
706
                        maxY = textControlHeight + (currentControl as TextControl).EndPoint.Y;
707
                    }
708 3c4acae8 이지연
                    if((currentControl as TextControl).ControlType_No == 2)
709
                        marginSize = (((currentControl as TextControl).Base_TextPath).ActualHeight - ((currentControl as TextControl).Base_Border).ActualHeight) / 2 + (((dynamic)currentControl).LineSize.Left / 2) + (currentControl as TextControl).ArcLength - 30;
710
                    if ((currentControl as TextControl).ControlType_No == 1)
711
                        marginSize = ((dynamic)currentControl).LineSize.Left;
712 787a4489 KangIngu
                }
713
                else if ((currentControl as IViewBox) != null)
714
                {
715
                    IViewBox instance = currentControl as IViewBox;
716
                    List<Point> am = (currentControl as IPath).PointSet;
717
                    List<double> xSet = am.Select(p => p.X).ToList();
718
                    List<double> ySet = am.Select(p => p.Y).ToList();
719
                    if (xSet.Min() < minX) minX = xSet.Min();
720
                    if (ySet.Min() < minY) minY = ySet.Min();
721
                    if (xSet.Max() > maxX) maxX = xSet.Max();
722
                    if (ySet.Max() > maxY) maxY = ySet.Max();
723
                }
724
                else if ((currentControl as IPath).PathData == null)
725
                {
726
                    Rect rt = new Rect
727
                    {
728
                        X = (currentControl as IPath).StartPoint.X,
729
                        Y = (currentControl as IPath).StartPoint.Y,
730
                        Width = Math.Max((currentControl as IPath).EndPoint.X, (currentControl as IPath).StartPoint.X) - Math.Min((currentControl as IPath).EndPoint.X, (currentControl as IPath).StartPoint.X),
731
                        Height = Math.Max((currentControl as IPath).EndPoint.Y, (currentControl as IPath).StartPoint.Y) - Math.Min((currentControl as IPath).EndPoint.Y, (currentControl as IPath).StartPoint.Y),
732
                    };
733
                    if (rt.Left < minX) minX = rt.Left;
734
                    if (rt.Top < minY) minY = rt.Top;
735
                    if (rt.Right > maxX) maxX = rt.Right;
736
                    if (rt.Bottom > maxY) maxY = rt.Bottom;
737
                }
738
                else if ((currentControl as IPath) == null)
739
                {
740
                    Rect rt = new Rect
741
                    {
742
                        X = (currentControl as IPath).StartPoint.X,
743
                        Y = (currentControl as IPath).StartPoint.Y,
744
                        Width = (currentControl as IPath).EndPoint.X - (currentControl as IPath).StartPoint.X,
745
                        Height = (currentControl as IPath).EndPoint.Y - (currentControl as IPath).StartPoint.Y
746
                    };
747
                    if (rt.Left < minX) minX = rt.Left;
748
                    if (rt.Top < minY) minY = rt.Top;
749
                    if (rt.Right > maxX) maxX = rt.Right;
750
                    if (rt.Bottom > maxY) maxY = rt.Bottom;
751
                }
752 3b797b23 humkyung
                else if (currentControl is CircleControl CircleCtrl)
753
                {
754
                    List<Point> am = CircleCtrl.PointSet;
755 e59e6c8e 이지연
                    lineSize = CircleCtrl.LineSize;
756 3b797b23 humkyung
                    minX = am.Min(x => x.X);
757
                    minY = am.Min(x => x.Y);
758
                    maxX = am.Max(x => x.X);
759
                    maxY = am.Max(x => x.Y);
760 787a4489 KangIngu
                }
761 a7bd032b 이지연
                else 
762 787a4489 KangIngu
                {
763 e59e6c8e 이지연
                    lineSize = ((dynamic)currentControl).LineSize;
764 787a4489 KangIngu
                    if ((currentControl as IPath).PathData.Bounds.Left < minX) minX = (currentControl as IPath).PathData.Bounds.Left;
765
                    if ((currentControl as IPath).PathData.Bounds.Top < minY) minY = (currentControl as IPath).PathData.Bounds.Top;
766
                    if ((currentControl as IPath).PathData.Bounds.Right > maxX) maxX = (currentControl as IPath).PathData.Bounds.Right;
767
                    if ((currentControl as IPath).PathData.Bounds.Bottom > maxY) maxY = (currentControl as IPath).PathData.Bounds.Bottom;
768
                }
769
            }
770
771 e59e6c8e 이지연
            Rect ac = new Rect(minX , minY, maxX - minX, maxY - minY);
772 787a4489 KangIngu
            bool addWidthSize = false;
773
            bool addHeightSize = false;
774
            if (ac.Width <= 10)
775
            {
776
                ac.Width += 10;
777
                addWidthSize = true;
778
            }
779
            if (ac.Height <= 10)
780
            {
781
                ac.Height += 10;
782
                addHeightSize = true;
783
            }
784
            BorderSize = ac;
785 e59e6c8e 이지연
            //lineSize : Thickness 굵기에 따라서 adoner 수정 
786
            ac.Width += lineSize;
787
            ac.Height += lineSize;
788 787a4489 KangIngu
            AdornerBorder.MinWidth = 10;
789
            AdornerBorder.MinHeight = 10;
790
            AdornerBorder.Width = ac.Width;
791
            AdornerBorder.Height = ac.Height;
792 e59e6c8e 이지연
            minX -= lineSize / 2;
793
            minY -= lineSize / 2;
794 787a4489 KangIngu
            Canvas.SetLeft(AdornerBorder, minX);
795
            Canvas.SetTop(AdornerBorder, minY);
796
797
            DragThumb.Width = ac.Width;
798
            DragThumb.Height = ac.Height;
799 3c4acae8 이지연
            rotateTop.Margin = new Thickness(rotateTop.Margin.Left, -30 - marginSize, rotateTop.Margin.Right, rotateTop.Margin.Bottom);
800 787a4489 KangIngu
            DragThumb.MinWidth = 10;
801
            DragThumb.MinHeight = 10;
802
            if (addWidthSize)
803
            {
804
                Canvas.SetLeft(DragThumb, minX - 5);
805
            }
806
            else
807
            {
808
                Canvas.SetLeft(DragThumb, minX);
809
            }
810
811
            if (addHeightSize)
812
            {
813
                Canvas.SetTop(DragThumb, minY - 5);
814
            }
815
            else
816
            {
817
                Canvas.SetTop(DragThumb, minY);
818
            }
819
        }
820 3b797b23 humkyung
821 787a4489 KangIngu
        /// <summary>
822
        /// UIElement 해제
823
        /// </summary>
824
        public void unRegister()
825
        {
826
            foreach (var item in this.ContainerContent.Children)
827
            {
828
                if (item is MarkupToPDF.Common.CommentUserInfo)
829
                {
830
                    (item as MarkupToPDF.Common.CommentUserInfo).IsHitTestVisible = true;
831
                }
832
            }
833
            this.ContainerContent.Children.Clear();
834
        }
835 f513c215 humkyung
836 787a4489 KangIngu
        /// <summary>
837
        /// 각 포인트들을 등록합니다.
838
        /// </summary>
839
        /// <param name="pointset">Drawing Point</param>
840
        public void RegistryPoint(CommentUserInfo member, int cnt = 1)
841 53880c83 ljiyeon
        {
842 787a4489 KangIngu
            int count = 0;
843 e65e8c5c humkyung
            List<Point> pts = (member as IPath).PointSet;
844 787a4489 KangIngu
            if (member.GetType().Name == "InkControl")
845
            {
846 e65e8c5c humkyung
                pts.Clear();
847
                pts.Add(new Point((member as IPath).PathData.Bounds.X, (member as IPath).PathData.Bounds.Y));
848
                pts.Add(new Point((member as IPath).PathData.Bounds.Left, (member as IPath).PathData.Bounds.Bottom));
849
                pts.Add(new Point((member as IPath).PathData.Bounds.Right, (member as IPath).PathData.Bounds.Bottom));
850
                pts.Add(new Point((member as IPath).PathData.Bounds.Right, (member as IPath).PathData.Bounds.Top));
851 787a4489 KangIngu
            }
852 3b797b23 humkyung
            ControlType markT = this.Members.First(p => p.DrawingData == member).Drawingtype;
853 e65e8c5c humkyung
            double Minx = pts.Min(x => x.X);
854
            double Miny = pts.Min(x => x.Y);
855 3b797b23 humkyung
856 e65e8c5c humkyung
            for (int i = 0; i < pts.Count; i++)
857 787a4489 KangIngu
            {
858 f513c215 humkyung
                MyThumb tm = new MyThumb
859 787a4489 KangIngu
                {
860
                    Style = (Style)this.LayoutRoot.Resources["ThumbResizeStyle"],
861
                };
862
863 4913851c humkyung
                this.Members.Last().ThumbList.Add(tm);
864 29010418 ljiyeon
865 e65e8c5c humkyung
                if ((markT == ControlType.ArcLine && pts[i] == (member as ArcControl).MidPoint) || (markT == ControlType.ArcArrow && pts[i] == (member as ArrowArcControl).MiddlePoint))
866 787a4489 KangIngu
                {
867
                    tm.Style = (Style)this.LayoutRoot.Resources["ThumbArcControlStyle"];
868
                }
869
                if (member.GetType().Name == "ArrowTextControl" && i == 1)
870
                {
871 4913851c humkyung
                    //if (this.Members.Count()<=1)
872 787a4489 KangIngu
                    //{
873
                    tm.Style = (Style)this.LayoutRoot.Resources["ThumbArcControlStyle"];
874
                    List<Point> ps = new List<Point>();
875
876 4913851c humkyung
                    if ((this.Members.First() as AdornerMember).DrawingData as ArrowTextControl != null)
877 787a4489 KangIngu
                    {
878 4913851c humkyung
                        var temp = (this.Members.First() as AdornerMember).DrawingData as ArrowTextControl;
879 787a4489 KangIngu
880 fa48eb85 taeseongkim
                        switch (Math.Abs(temp.CommentAngle).ToString())
881 787a4489 KangIngu
                        {
882
                            case "90":
883
                                {
884
                                    ps.Clear();
885
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox), Canvas.GetTop(temp.Base_TextBox))); //위 왼쪽
886
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox), Canvas.GetTop(temp.Base_TextBox) - temp.BoxWidth / 2)); // 위 중간
887
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox), Canvas.GetTop(temp.Base_TextBox) - temp.BoxWidth)); // 위 오른쪽
888
889
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) + temp.BoxHeight / 2, Canvas.GetTop(temp.Base_TextBox))); //왼쪽 중간
890
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) + temp.BoxHeight, Canvas.GetTop(temp.Base_TextBox))); //왼쪽 하단
891
892
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) + temp.BoxHeight, Canvas.GetTop(temp.Base_TextBox) - temp.BoxWidth / 2)); //중간 하단
893
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) + temp.BoxHeight, Canvas.GetTop(temp.Base_TextBox) - temp.BoxWidth)); //오른쪽 하단
894
895
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) + temp.BoxHeight / 2, Canvas.GetTop(temp.Base_TextBox) - temp.BoxWidth)); //오른쪽 중간
896
                                }
897
                                break;
898
                            case "270":
899
                                {
900
                                    ps.Clear();
901
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox), Canvas.GetTop(temp.Base_TextBox))); //위 왼쪽
902
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox), Canvas.GetTop(temp.Base_TextBox) + temp.BoxWidth / 2)); // 위 중간
903
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox), Canvas.GetTop(temp.Base_TextBox) + temp.BoxWidth)); // 위 오른쪽
904
905
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) - temp.BoxHeight / 2, Canvas.GetTop(temp.Base_TextBox))); //왼쪽 중간
906
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) - temp.BoxHeight, Canvas.GetTop(temp.Base_TextBox))); //왼쪽 하단
907
908
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) - temp.BoxHeight, Canvas.GetTop(temp.Base_TextBox) + temp.BoxWidth / 2)); //중간 하단
909
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) - temp.BoxHeight, Canvas.GetTop(temp.Base_TextBox) + temp.BoxWidth)); //오른쪽 하단
910
911
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) - temp.BoxHeight / 2, Canvas.GetTop(temp.Base_TextBox) + temp.BoxWidth)); //오른쪽 중간
912
                                }
913
                                break;
914
                            default:
915
                                {
916
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) + temp.BoxWidth / 2, Canvas.GetTop(temp.Base_TextBox))); //상단
917
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) + temp.BoxWidth / 2, Canvas.GetTop(temp.Base_TextBox) + temp.BoxHeight)); // 하단
918
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox), Canvas.GetTop(temp.Base_TextBox) + temp.BoxHeight / 2)); //좌단
919
                                    ps.Add(new Point(Canvas.GetLeft(temp.Base_TextBox) + temp.BoxWidth, Canvas.GetTop(temp.Base_TextBox) + temp.BoxHeight / 2));  //우단
920
                                }
921
                                break;
922
                        }
923
924
                        ArrowTextControl instance = (member as ArrowTextControl);
925
                        if (instance.isTrans)
926
                        {
927
                            //var endP = MathSet.getNearPoint(ps, temp.MidPoint);
928
                            //var tempP = MathSet.getMiddlePoint(temp.StartPoint, endP);
929
                            //list[count] = tempP;
930 e65e8c5c humkyung
                            pts[count] = temp.MidPoint;
931 787a4489 KangIngu
                        }
932
                        else
933
                        {
934
                            if (temp.isFixed)
935
                            {
936
                                var endP = MathSet.getNearPoint(ps, temp.MidPoint);
937
                                var testP = endP;
938
                                if (ps[0] == endP) //상단
939
                                {
940
                                    testP = new Point(endP.X, endP.Y - 50);
941
                                }
942
                                else if (ps[1] == endP) //하단
943
                                {
944
                                    testP = new Point(endP.X, endP.Y + 50);
945
                                }
946
                                else if (ps[2] == endP) //좌단
947
                                {
948
                                    testP = new Point(endP.X - 50, endP.Y);
949
                                }
950
                                else if (ps[3] == endP) //우단
951
                                {
952
                                    testP = new Point(endP.X + 50, endP.Y);
953
                                }
954 e65e8c5c humkyung
                                pts[count] = testP;
955 787a4489 KangIngu
                            }
956
                            else
957
                            {
958
                                var endP = MathSet.getNearPoint(ps, instance.MidPoint);
959 e65e8c5c humkyung
                                pts[count] = MathSet.getMiddlePoint(instance.StartPoint, endP);
960 787a4489 KangIngu
                            }
961
                        }
962
                    }
963
                }
964 39f208de taeseongkim
965
                /// ArrowTextControl text box 화면 출력
966 e65e8c5c humkyung
                if (member.GetType().Name == "ArrowTextControl" && pts[i] == pts.Last())
967 787a4489 KangIngu
                {
968
                    tm.Style = (Style)this.LayoutRoot.Resources["ThumbTextStyle"];
969
                    tm.Width = (member as ArrowTextControl).BoxWidth;
970
                    tm.Height = (member as ArrowTextControl).BoxHeight;
971 fa48eb85 taeseongkim
                    var angle = (member as ArrowTextControl).PageAngle;
972 787a4489 KangIngu
                    if (Math.Abs(angle).ToString() == "90")
973
                    {
974
                        tm.RenderTransformOrigin = new Point(0, 0);
975
                        tm.RenderTransform = new RotateTransform { Angle = 270 };
976
                    }
977
                    else if (Math.Abs(angle).ToString() == "270")
978
                    {
979
                        tm.RenderTransformOrigin = new Point(0, 0);
980
                        tm.RenderTransform = new RotateTransform { Angle = 90 };
981
                    }
982
                    else
983
                    {
984
                        tm.RenderTransformOrigin = new Point(0.5, 0.5);
985
                        tm.RenderTransform = new RotateTransform()
986
                        {
987 fa48eb85 taeseongkim
                            Angle = angle
988 787a4489 KangIngu
                        };
989
                    }
990
                }
991 29010418 ljiyeon
                
992 787a4489 KangIngu
                if (member.GetType().Name == "CloudControl")
993
                {
994 e65e8c5c humkyung
                    if (i == pts.Count() - 1)
995 787a4489 KangIngu
                    {
996
                        tm.Visibility = System.Windows.Visibility.Collapsed;
997
                    }
998
                }
999
                if (member.GetType().Name == "PolygonControl")
1000
                {
1001 e65e8c5c humkyung
                    if (i == pts.Count() - 1)
1002 787a4489 KangIngu
                    {
1003
                        if ((member as PolygonControl).ControlType == ControlType.ChainLine)
1004
                        {
1005
1006
                        }
1007
                        else
1008
                        {
1009
                            tm.Visibility = System.Windows.Visibility.Collapsed;
1010
                        }
1011
                    }
1012
                    if ((member as PolygonControl).ControlType == ControlType.Ink)
1013
                    {
1014
                        tm.Visibility = System.Windows.Visibility.Collapsed;
1015
                    }
1016
                }
1017 29010418 ljiyeon
                
1018 787a4489 KangIngu
                this.ContainerContent.Children.Add(tm);
1019 e65e8c5c humkyung
                Canvas.SetLeft(tm, pts[count].X);
1020
                Canvas.SetTop(tm, pts[count].Y);
1021
                if (member.GetType().Name == "ArrowTextControl" && pts[i] == (member as ArrowTextControl).MidPoint)
1022 787a4489 KangIngu
                {
1023
                    Canvas.SetZIndex(tm, 95);
1024 1b2cf911 taeseongkim
                    //tm.Opacity = 0;
1025 3dbace4e taeseongkim
                    tm.DragDelta += MidPoint_DragDelta;
1026 787a4489 KangIngu
                }
1027
                else
1028
                {
1029 3dbace4e taeseongkim
                    tm.DragDelta += ResizeTm_DragDelta;
1030 787a4489 KangIngu
                    Canvas.SetZIndex(tm, 99);
1031
                }
1032
1033
                tm.DragStarted += new DragStartedEventHandler(tm_DragStarted);
1034
                tm.DragCompleted += new DragCompletedEventHandler(tm_DragCompleted);
1035 3dbace4e taeseongkim
                
1036 787a4489 KangIngu
                tm.MouseMove += new MouseEventHandler(resize_MouseMove);
1037
                count++;
1038
            }
1039
        }
1040
1041 3dbace4e taeseongkim
        private void MidPoint_DragDelta(object sender, DragDeltaEventArgs e)
1042
        {
1043
            MyThumb thumb = sender as MyThumb;
1044
            double newHorizontalChange = e.HorizontalChange;
1045
            double newVerticalChange = e.VerticalChange;
1046
1047 41c4405e taeseongkim
            var newpoint = MathHelper.RotatePoint(new Point(newHorizontalChange, newVerticalChange), new Point(), 0);// commentInfo.VisualPageAngle);
1048 3dbace4e taeseongkim
1049
            var direction = VisualHelper.GetPointDirection(newpoint, ViewerDataModel.Instance.PageAngle);
1050
1051
            System.Diagnostics.Debug.WriteLine("뱡향 : " + direction.ToString());
1052
1053
            AdornerMember control = CurrentAdornerMember(thumb);
1054
            var commentInfo = (control.DrawingData) as CommentUserInfo;
1055
1056
            if (commentInfo is ArrowTextControl)
1057
            {
1058
                Point getThumbPoint = GetPosition(thumb);
1059
1060
                var arrowText = commentInfo as ArrowTextControl;
1061
1062
                //var midPoint = MathSet.getMiddlePoint(arrowText.StartPoint, arrowText.EndPoint);
1063
                //arrowText.MidPoint = newpoint;
1064
                thumb.Translate(newpoint.X, newpoint.Y, this.AngleValue);
1065 41c4405e taeseongkim
          
1066 3dbace4e taeseongkim
                commentInfo.OnMoveCtrlPoint(getThumbPoint, newpoint.X, newpoint.Y, ViewerDataModel.Instance.IsAxisLock || ViewerDataModel.Instance.IsPressShift);
1067
1068
                control.UpdateThumb();
1069
1070
                System.Diagnostics.Debug.WriteLine($"text {Canvas.GetLeft(arrowText.Base_TextBox)},{Canvas.GetTop(arrowText.Base_TextBox)}");
1071
1072
                System.Diagnostics.Debug.WriteLine($"Page Angle : {ViewerDataModel.Instance.PageAngle} GetPoint : {getThumbPoint.X},{getThumbPoint.Y}  Change Value : {newpoint.X},{newpoint.Y}");
1073
            }
1074
1075
        }
1076
        
1077
1078 ab7fe8c0 humkyung
        /// <summary>
1079
        /// 제어점을 조정하여 크기를 수정한다.
1080
        /// </summary>
1081
        /// <param name="sender"></param>
1082
        /// <param name="e"></param>
1083 787a4489 KangIngu
        private void ResizeTm_DragDelta(object sender, DragDeltaEventArgs e)
1084
        {
1085 7bb40d38 taeseongkim
            if (sender.GetType() != typeof(MyThumb)) return;
1086
1087
            MyThumb thumb = sender as MyThumb;
1088
1089 d2114d3b humkyung
            if (this.Members.Count > 1) return;
1090 7bb40d38 taeseongkim
1091
            System.Diagnostics.Debug.WriteLine($"Value {e.HorizontalChange},{e.VerticalChange}");
1092
1093
            double newHorizontalChange = e.HorizontalChange;
1094
            double newVerticalChange = e.VerticalChange;
1095
1096 39f208de taeseongkim
            //if (reSizePoint != new Point(0, 0))
1097
            //{
1098 15bbef90 taeseongkim
                //Point setPoint = Mouse.GetPosition(Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.zoomAndPanCanvas);
1099
1100 39f208de taeseongkim
                Point setPoint = GetPosition(thumb);
1101 8de55603 taeseongkim
1102
                //System.Diagnostics.Debug.WriteLine($"1. GetPoint : {GetPosition(thumb).X},{GetPosition(thumb).Y}  Change Value : {newHorizontalChange},{newVerticalChange}");
1103 15bbef90 taeseongkim
1104 8de55603 taeseongkim
                AdornerMember control = CurrentAdornerMember(thumb);
1105
                var commentInfo = (control.DrawingData) as CommentUserInfo;
1106 15bbef90 taeseongkim
1107 39f208de taeseongkim
                double ratatePointAngle = 0;
1108 233ef333 taeseongkim
1109 39f208de taeseongkim
                if (commentInfo is ArrowTextControl)
1110 8de55603 taeseongkim
                {
1111 39f208de taeseongkim
                    var textControl = (commentInfo as ArrowTextControl);
1112 233ef333 taeseongkim
1113 39f208de taeseongkim
                    if (textControl.EndPoint == MathSet.getNearPoint(textControl.PointSet, setPoint)) //(textControl.MidPoint == MathSet.getNearPoint(textControl.PointSet,setPoint) ||
1114
1115
                    {
1116 3dbace4e taeseongkim
                        textControl.CommentAngle = 0;
1117
                        this.AngleValue = 0;
1118
                        ratatePointAngle = commentInfo.VisualPageAngle;
1119 39f208de taeseongkim
                    }
1120
                    else
1121 41c4405e taeseongkim
                    {   
1122 39f208de taeseongkim
                        //textControl.CommentAngle = commentInfo.VisualPageAngle + MathSet.returnAngle(textControl.StartPoint, ref tempPoint, ViewerDataModel.Instance.IsPressShift);
1123 41c4405e taeseongkim
                        textControl.OnCreatingMouseMove(textControl.EndPoint, ViewerDataModel.Instance.IsPressShift);
1124 39f208de taeseongkim
                        this.AngleValue = textControl.CommentAngle;
1125
                        commentInfo.CommentAngle = this.AngleValue;
1126
                    }
1127
                        //CommentAngle = MathSet.returnAngle(this.StartPoint, ref tempPoint, bAxisLocked);
1128 8de55603 taeseongkim
                }
1129 39f208de taeseongkim
                System.Diagnostics.Debug.WriteLine("## Angle : " + this.AngleValue + " ##");
1130
                thumb.Translate(newHorizontalChange, newVerticalChange, this.AngleValue);
1131
1132
                // 페이지회전에 따른 화살표텍스트 박스의 이동 수정
1133 43e1d368 taeseongkim
1134 39f208de taeseongkim
                var newpoint = MathHelper.RotatePoint(new Point(newHorizontalChange, newVerticalChange), new Point(), ratatePointAngle);// commentInfo.VisualPageAngle);
1135
     
1136
                Point thumbPoint = MathHelper.RotatePoint(setPoint, new Point(), ratatePointAngle);// commentInfo.VisualPageAngle);
1137
1138
                //thumbPoint.X = Math.Abs(thumbPoint.X);
1139
                //thumbPoint.Y = Math.Abs(thumbPoint.Y);
1140
1141
                //if ((setPoint.X + newpoint.X) < 0 || (Math.Abs(thumbPoint.X) + newpoint.X) - ViewerDataModel.Instance.ImageViewWidth > 0)
1142
                //{
1143
                //    newpoint.X = 0;
1144
                //}
1145
1146
                //if (setPoint.Y + newpoint.Y < 0 || (Math.Abs(thumbPoint.Y) + newpoint.Y) - ViewerDataModel.Instance.ImageViewHeight > 0)
1147
                //{
1148
                //    newpoint.Y = 0;
1149
                //}
1150 8de55603 taeseongkim
1151
                commentInfo.OnMoveCtrlPoint(setPoint, newpoint.X, newpoint.Y, ViewerDataModel.Instance.IsAxisLock || ViewerDataModel.Instance.IsPressShift);
1152
1153
                //System.Diagnostics.Debug.WriteLine($"3. GetPoint : {GetPosition(thumb).X},{GetPosition(thumb).Y}");
1154 508c3ac5 humkyung
                control.UpdateThumb();
1155 15bbef90 taeseongkim
1156 8de55603 taeseongkim
                //System.Diagnostics.Debug.WriteLine($"4. GetPoint : {GetPosition(thumb).X},{GetPosition(thumb).Y}");
1157 508c3ac5 humkyung
                this.BorderUpdate();
1158 15bbef90 taeseongkim
1159 8de55603 taeseongkim
               //System.Diagnostics.Debug.WriteLine($"5. GetPoint : {GetPosition(thumb).X},{GetPosition(thumb).Y}");
1160 39f208de taeseongkim
            //}
1161 8de55603 taeseongkim
        }
1162
1163
        private AdornerMember CurrentAdornerMember(MyThumb thumb)
1164
        {
1165
            AdornerMember result = null;
1166
1167
            try
1168
            {
1169
                result = (from userThumb in this.Members
1170
                            where userThumb.ThumbList.Contains(thumb)
1171
                            select userThumb).FirstOrDefault();
1172
            }
1173
            catch (Exception ex)
1174
            {
1175
                App.FileLogger.Error(ex);
1176 787a4489 KangIngu
            }
1177 8de55603 taeseongkim
1178
            return result;
1179 787a4489 KangIngu
        }
1180
1181 15bbef90 taeseongkim
        private Point GetPosition(Thumb thumb)
1182
        {
1183
            return new Point(Canvas.GetLeft(thumb), Canvas.GetTop(thumb));
1184
        }
1185
1186 787a4489 KangIngu
        #endregion
1187
        #region 이벤트
1188
1189
        void tm_DragCompleted(object sender, DragCompletedEventArgs e)
1190
        {
1191
            this.isDragging = false;
1192
            DraggerThumb = null;
1193
1194 fd452a01 swate0609
1195 4913851c humkyung
            var comments = (from drawing in this.Members
1196 d128ceb2 humkyung
                            select drawing.DrawingData as CommentUserInfo).ToList();
1197 e5bd2147 swate0609
            //UndoCommand.Instance.Push(comments, this.AngleValue, 0, lstPointTemp);
1198 26ec6226 taeseongkim
            ViewerDataModel.Instance.IsMarkupUpdate = true;
1199 787a4489 KangIngu
        }
1200
1201 ec052e41 humkyung
        /// <summary>
1202
        /// start drag
1203
        /// </summary>
1204
        /// <param name="sender"></param>
1205
        /// <param name="e"></param>
1206 787a4489 KangIngu
        void tm_DragStarted(object sender, DragStartedEventArgs e)
1207
        {
1208
            this.DraggerThumb = sender as Thumb;
1209
            this.isDragging = true;
1210
1211
            if (ViewerDataModel.Instance.UndoDataList == null)
1212
            {
1213
                return;
1214
            }
1215
1216 e5bd2147 swate0609
            
1217 873011c4 humkyung
            //if ((null != ViewerDataModel.Instance.UndoDataList.LastOrDefault()) && (ViewerDataModel.Instance.UndoDataList.LastOrDefault().Event == EventType.Thumb))
1218 e5bd2147 swate0609
            //{
1219
            //    return;
1220
            //}
1221 787a4489 KangIngu
1222 873011c4 humkyung
            //if ((null != ViewerDataModel.Instance.UndoDataList.LastOrDefault()) && (ViewerDataModel.Instance.UndoDataList.LastOrDefault().MarkupDataColl != null))
1223 e5bd2147 swate0609
            //{
1224 873011c4 humkyung
            //    if (ViewerDataModel.Instance.UndoDataList.LastOrDefault().MarkupDataColl.Count > 0)
1225 e5bd2147 swate0609
            //    {
1226 873011c4 humkyung
            //        if (ViewerDataModel.Instance.UndoDataList.LastOrDefault().MarkupDataColl.FirstOrDefault().PointSet != null)
1227 e5bd2147 swate0609
            //        {
1228
            //            return;
1229
            //        }
1230
            //    }
1231
            //}
1232 787a4489 KangIngu
1233 4913851c humkyung
            var comments = (from drawing in this.Members
1234 d128ceb2 humkyung
                            select drawing.DrawingData as CommentUserInfo).ToList();
1235 e5bd2147 swate0609
            //UndoCommand.Instance.Push(comments, this.AngleValue, 0, lstBeforePointSet);
1236
            UndoCommand.Instance.Push(comments);
1237 787a4489 KangIngu
        }
1238
1239
        private void rotate_MouseMove(object sender, MouseEventArgs e)
1240
        {
1241 4913851c humkyung
            if ((this.Members.First() as AdornerMember).DrawingData.GetType().Name == "TextControl")
1242 787a4489 KangIngu
            {
1243
                if (LastRotateVerticalValue < e.GetPosition(this).X)
1244
                    IsTextAngle = true;
1245
                else
1246
                    IsTextAngle = false;
1247
                LastRotateVerticalValue = e.GetPosition(this).X;
1248
            }
1249 9f473fb7 KangIngu
            else
1250 53880c83 ljiyeon
            {
1251 9f473fb7 KangIngu
                if (e.GetPosition(this).X > LastRotateHorizontalValue)
1252
                {
1253
                    RotateFlag = true;
1254
                }
1255
                else
1256
                {
1257
                    RotateFlag = false;
1258
                }
1259
                LastRotateHorizontalValue = e.GetPosition(this).X;
1260
            }
1261 787a4489 KangIngu
        }
1262
1263 8771edc4 humkyung
        private void drag_DragStarted(object sender, DragStartedEventArgs e)
1264
        {
1265
            /// save mouse down and current mouse point
1266
            this.MouseDownPoint = Mouse.GetPosition(Window.GetWindow((DependencyObject)sender));
1267
            this.CurrentMousePoint = Mouse.GetPosition(Window.GetWindow((DependencyObject)sender));
1268
            /// up to here
1269
1270
            if (ViewerDataModel.Instance.UndoDataList == null)
1271
            {
1272
                return;
1273
            }
1274 873011c4 humkyung
            //if ((null != ViewerDataModel.Instance.UndoDataList.LastOrDefault()) && (ViewerDataModel.Instance.UndoDataList.LastOrDefault().Event == EventType.Thumb))
1275 e5bd2147 swate0609
            //{
1276
            //    return;
1277
            //}
1278 873011c4 humkyung
            //if ((null != ViewerDataModel.Instance.UndoDataList.LastOrDefault()) && (ViewerDataModel.Instance.UndoDataList.LastOrDefault().MarkupDataColl != null))
1279 e5bd2147 swate0609
            //{
1280 873011c4 humkyung
            //    if (ViewerDataModel.Instance.UndoDataList.LastOrDefault().MarkupDataColl.Count > 0)
1281 e5bd2147 swate0609
            //    {
1282 873011c4 humkyung
            //        if (ViewerDataModel.Instance.UndoDataList.LastOrDefault().MarkupDataColl.FirstOrDefault().PointSet != null)
1283 e5bd2147 swate0609
            //        {
1284
            //            return;
1285
            //        }
1286
            //    }
1287
            //}
1288 8771edc4 humkyung
1289
            var comments = (from drawing in this.Members
1290
                            select drawing.DrawingData as CommentUserInfo).ToList();
1291 e5bd2147 swate0609
            //UndoCommand.Instance.Push(comments, this.AngleValue);
1292
            UndoCommand.Instance.Push(comments);
1293 8771edc4 humkyung
        }
1294
1295
        private void drag_DragCompleted(object sender, DragCompletedEventArgs e)
1296
        {
1297 902faaea taeseongkim
            DragThumb.Cursor = new Cursor(App.DefaultArrowCursorStream);
1298 8771edc4 humkyung
1299
            var comments = (from drawing in this.Members
1300
                            select drawing.DrawingData as CommentUserInfo).ToList();
1301 e5bd2147 swate0609
            //UndoCommand.Instance.Push(comments, this.AngleValue);
1302 8771edc4 humkyung
        }
1303
1304 6b6e937c taeseongkim
        private void DragThumb_DragDelta(object sender, DragDeltaEventArgs e)
1305 787a4489 KangIngu
        {
1306 508c3ac5 humkyung
            double scale = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.zoomAndPanControl.ContentScale;
1307 025ebf74 humkyung
1308 f3ab410f taeseongkim
            var newMousePoint = Mouse.GetPosition(Window.GetWindow((DependencyObject)sender));
1309
         
1310
            var horzChange = (newMousePoint.X - this.CurrentMousePoint.X) / scale;/// Math.Round(tmp.X - this.CurrentMousePoint.X) / scale;
1311
            var vertChange = (newMousePoint.Y - this.CurrentMousePoint.Y) / scale;///Math.Round(tmp.Y - this.CurrentMousePoint.Y) / scale;
1312
1313 0d00f9c8 humkyung
            try
1314
            {
1315
                DragThumb.Cursor = Cursors.SizeAll;
1316 39f208de taeseongkim
                System.Diagnostics.Debug.WriteLine($"TransItem : {horzChange}, {vertChange}");
1317
                System.Diagnostics.Debug.WriteLine($"DragDeltaEventArgs : {e.HorizontalChange}, {e.VerticalChange}");
1318 8e5a4a6a taeseongkim
1319
1320 39f208de taeseongkim
                var mainRect = ViewerDataModel.Instance.SystemMain.dzMainMenu.mainPanel.Rect();
1321 f3ab410f taeseongkim
1322 39f208de taeseongkim
                //if (ViewerDataModel.Instance.PageAngle == 270 || ViewerDataModel.Instance.PageAngle == 90)
1323 f3ab410f taeseongkim
                //{
1324 39f208de taeseongkim
                //    mainRect = new Rect(0, 0, mainRect.Height, mainRect.Width);
1325 f3ab410f taeseongkim
                //}
1326
1327 39f208de taeseongkim
                mainRect = MathHelper.RotateRect(ViewerDataModel.Instance.SystemMain.dzMainMenu.mainPanel.Rect(), new Point(mainRect.Width / 2, mainRect.Height / 2), ViewerDataModel.Instance.PageAngle);
1328
1329
                var rect = (this.ContainerContent.FindChildByType<CommentUserInfo>() as CommentUserInfo).ItemRect; //this.AdornerBorder.Bounds(ViewerDataModel.Instance.SystemMain.dzMainMenu.mainPanel);
1330
1331
                var rotationRect = MathHelper.RotateRect(rect, new Point(mainRect.Width / 2, mainRect.Height / 2), ViewerDataModel.Instance.PageAngle);
1332
                
1333
                var moveDirection = mainRect.Movement(rotationRect);
1334 f3ab410f taeseongkim
1335 39f208de taeseongkim
                System.Diagnostics.Debug.WriteLine($"horzChange: {horzChange} , vertChange:{vertChange}");
1336
                //System.Diagnostics.Debug.WriteLine($"DragDeltaEventArgs : Top:{rect.Top}, Left:{rect.Left}, Right:{rect.Right}, Bottom:{rect.Bottom} ,BottomLeft : {rect.BottomLeft} BottomRight : {rect.BottomRight}");
1337 f3ab410f taeseongkim
1338 39f208de taeseongkim
                //if (Math.Abs(horzChange) > 0)
1339 f3ab410f taeseongkim
                //{
1340
                //    if ((horzChange < 0 && !moveDirection.Left) || (horzChange > 0 && !moveDirection.Right))
1341
                //    {
1342
                //        //this.TranslateItems(horzChange * -1, 0);
1343
                //        //e.Handled = true;
1344
                //        horzChange = 0;
1345
                //        newMousePoint.X = this.CurrentMousePoint.X;
1346
                //    }
1347
                //}
1348
1349 39f208de taeseongkim
                //if (Math.Abs(vertChange) > 0)
1350 f3ab410f taeseongkim
                //{
1351
                //    if ((vertChange < 0 && !moveDirection.Up) || (vertChange > 0 && !moveDirection.Down))
1352
                //    {
1353
                //        //this.TranslateItems(0, vertChange * -1);
1354
                //        //e.Handled = true;
1355
                //        vertChange = 0;
1356
                //        newMousePoint.Y = this.CurrentMousePoint.Y;
1357
                //    }
1358
                //}
1359 8de55603 taeseongkim
1360
                this.TranslateItems(horzChange, vertChange);
1361 0d00f9c8 humkyung
            }
1362
            finally
1363
            {
1364
                /// update CurrentMousePoint
1365 f3ab410f taeseongkim
                this.CurrentMousePoint = newMousePoint;
1366 0d00f9c8 humkyung
            }
1367 787a4489 KangIngu
        }
1368 eb2b9248 KangIngu
1369 0d00f9c8 humkyung
        /// <summary>
1370
        /// translate all members
1371
        /// </summary>
1372
        /// <param name="e"></param>
1373
        public void TranslateItems(double dx, double dy)
1374 787a4489 KangIngu
        {
1375
            Dispatcher.BeginInvoke((Action)(() =>
1376
            {
1377 4913851c humkyung
                foreach (var item in this.Members)
1378 787a4489 KangIngu
                {
1379 0d00f9c8 humkyung
                    this.TranslateItem(dx, dy, item);
1380 787a4489 KangIngu
                }
1381 c7fde400 taeseongkim
1382
                this.BorderUpdate();
1383 787a4489 KangIngu
            }));
1384
        }
1385 eb2b9248 KangIngu
1386 0d00f9c8 humkyung
        /// <summary>
1387
        /// translate a item
1388
        /// </summary>
1389
        /// <param name="e"></param>
1390
        /// <param name="item"></param>
1391
        private void TranslateItem(double dx, double dy, AdornerMember item)
1392 787a4489 KangIngu
        {
1393 554aae3b humkyung
            /// rotate point with page rotation
1394
            var rotation = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.rotate.Angle;
1395
            Point delta = MathSet.RotateAbout(new Point(0, 0), new Point(dx, dy), -rotation);
1396
            /// up to here
1397 0d00f9c8 humkyung
            (item.DrawingData as CommentUserInfo).OnTranslate(delta.X, delta.Y);
1398 105359ce ljiyeon
1399
                ViewerDataModel.Instance.SystemMain.dzMainMenu.pageNavigator.MarkupListUpdate(
1400 873011c4 humkyung
                        MarkupParser.MarkupToString((item.DrawingData as CommentUserInfo), App.ViewInfo.UserID), EventType.Operation, null, null);            
1401 105359ce ljiyeon
1402 508c3ac5 humkyung
            item.UpdateThumb();
1403 787a4489 KangIngu
        }
1404
1405
        private void resize_MouseMove(object sender, MouseEventArgs e)
1406
        {
1407 39f208de taeseongkim
            //reSizePoint = e.GetPosition(this);
1408 787a4489 KangIngu
        }
1409 0d00f9c8 humkyung
1410 787a4489 KangIngu
        /// <summary>
1411
        /// 회전
1412
        /// </summary>
1413
        /// <param name="sender"></param>
1414
        /// <param name="e"></param>
1415
        public void rotate_DragDelta(object sender, DragDeltaEventArgs e)
1416
        {
1417
            MoveRotate(e);
1418
        }
1419
1420
        double LastRotateHorizontalValue = 0;
1421
        double LastRotateVerticalValue = 0;
1422 9f473fb7 KangIngu
        bool RotateFlag = false;
1423
1424 992a98b4 KangIngu
        /// <summary>
1425
        /// <history>humkyung 2018.05.09 upgrade rotate shape peformance</history>
1426
        /// </summary>
1427
        /// <param name="e"></param>
1428 787a4489 KangIngu
        public void MoveRotate(DragDeltaEventArgs e)
1429
        {
1430 62b6bcde humkyung
            Point CenterPoint = this.Centeroid;
1431 992a98b4 KangIngu
            Point pt = Mouse.GetPosition(this);
1432
1433 edef7af2 humkyung
            #region X축 기준으로 회전 각도를 구한다.
1434 e65e8c5c humkyung
            Vector AxisX = new Vector(RotatedPoint.X - CenterPoint.X, RotatedPoint.Y - CenterPoint.Y);
1435
            AxisX.Normalize();
1436
            Vector AxisY = new Vector(pt.X - CenterPoint.X, pt.Y - CenterPoint.Y);
1437
            AxisY.Normalize();
1438
            double dDeltaAngle = Vector.AngleBetween(AxisX, AxisY);
1439 edef7af2 humkyung
            #endregion
1440
1441 e65e8c5c humkyung
            _ActualAngle += dDeltaAngle;
1442
            if (_ActualAngle > 360) _ActualAngle -= 360;
1443
            if (_ActualAngle < 0) _ActualAngle += 360;
1444 edef7af2 humkyung
            #region AxisLock이 설정되어 있는 경우 Angle을 특정 값으로 정렬한다.
1445 b79d6e7f humkyung
            if (ViewerDataModel.Instance.IsAxisLock || ViewerDataModel.Instance.IsPressShift)
1446 edef7af2 humkyung
            {
1447 e65e8c5c humkyung
                double tmp = AlignedAngles.OrderBy(x => Math.Abs(_ActualAngle - x)).First();
1448
                dDeltaAngle = tmp - AngleValue;
1449
                AngleValue = tmp;
1450
            }
1451
            else
1452
            {
1453
                AngleValue = _ActualAngle;
1454 edef7af2 humkyung
            }
1455
            #endregion
1456
1457
            /// save rotatePoint
1458 e65e8c5c humkyung
            this.RotatedPoint = pt;
1459 787a4489 KangIngu
1460
            Dispatcher.BeginInvoke((Action)(() =>
1461
            {
1462 554aae3b humkyung
                foreach (var member in this.Members)
1463 787a4489 KangIngu
                {
1464 554aae3b humkyung
                    member.RotateAbout(CenterPoint, dDeltaAngle); 
1465
                    #region 보더 업데이트
1466
                    switch (member.Drawingtype)
1467 787a4489 KangIngu
                    {
1468
                        case ControlType.TextControl:
1469 fa48eb85 taeseongkim
                            (member.DrawingData as CommentUserInfo).CommentAngle = AngleValue;
1470 53880c83 ljiyeon
1471 9b7cda70 KangIngu
                            DragThumb.RenderTransformOrigin = new Point(0, 0);
1472 787a4489 KangIngu
                            DragThumb.RenderTransform = new RotateTransform()
1473
                            {
1474 fa48eb85 taeseongkim
                                Angle = (member.DrawingData as CommentUserInfo).CommentAngle
1475 787a4489 KangIngu
                            };
1476
1477 9b7cda70 KangIngu
                            AdornerBorder.RenderTransformOrigin = new Point(0, 0);
1478 787a4489 KangIngu
                            AdornerBorder.RenderTransform = new RotateTransform()
1479
                            {
1480 fa48eb85 taeseongkim
                                Angle = (member.DrawingData as CommentUserInfo).CommentAngle
1481 54e35b39 송근호
                            };
1482 6e035f10 송근호
1483 62b6bcde humkyung
                            (member.DrawingData as CommentUserInfo).UpdateControl();
1484 787a4489 KangIngu
                            BorderUpdate();
1485
                            break;
1486 53880c83 ljiyeon
1487 787a4489 KangIngu
                        case ControlType.ArrowMultiLine:
1488
                        case ControlType.ArcLine:
1489 40b3ce25 ljiyeon
                        case ControlType.ArcArrow:
1490 787a4489 KangIngu
                        case ControlType.SingleLine:
1491
                        case ControlType.Triangle:
1492
                        case ControlType.ArrowTextControl:
1493 554aae3b humkyung
                        case ControlType.PolygonControl:
1494
                        case ControlType.Ink:
1495 787a4489 KangIngu
                            BorderUpdate();
1496
                            break;
1497 554aae3b humkyung
                        case ControlType.Date:
1498 787a4489 KangIngu
                        case ControlType.RectCloud:
1499
                        case ControlType.Rectangle:
1500
                        case ControlType.ImgControl:
1501
                        case ControlType.Sign:
1502
                        case ControlType.Symbol:
1503
                        case ControlType.Stamp:
1504 fa48eb85 taeseongkim
                            (member.DrawingData as CommentUserInfo).CommentAngle = AngleValue;
1505 787a4489 KangIngu
                            BorderUpdate();
1506
                            break;
1507
                        case ControlType.PolygonCloud:
1508 554aae3b humkyung
                            ((ICloudControl)member.DrawingData).DrawingCloud();
1509 787a4489 KangIngu
                            BorderUpdate();
1510
                            break;
1511
                        case ControlType.Circle:
1512 fa48eb85 taeseongkim
                            (member.DrawingData as CommentUserInfo).CommentAngle = AngleValue;
1513 554aae3b humkyung
                            ((CircleControl)member.DrawingData).SetCenterXY();
1514 787a4489 KangIngu
                            BorderUpdate();
1515
                            break;
1516
                        default:
1517
                            break;
1518
                    }
1519
                }
1520
                #endregion
1521
            }));
1522
        }
1523 eb2b9248 KangIngu
1524 873011c4 humkyung
        /// <summary>
1525
        /// 객체 회전 시작
1526
        /// </summary>
1527
        /// <param name="sender"></param>
1528
        /// <param name="e"></param>
1529 787a4489 KangIngu
        private void rotate_DragStarted(object sender, DragStartedEventArgs e)
1530 29010418 ljiyeon
        {            
1531 e65e8c5c humkyung
            this.RotatedPoint = Mouse.GetPosition(this); /// 2018.05.09 added by humkyung
1532 eb2b9248 KangIngu
            rotateTop.Cursor = Cursors.SizeAll;
1533
1534 992a98b4 KangIngu
            /// get angle from text controls' angle if only text control exists - 2018.05.10 added by humkyung
1535 3b797b23 humkyung
            if ((1 == this.Members.Count) && (this.Members[0]).DrawingData.GetType().Name == "TextControl")
1536 992a98b4 KangIngu
            {
1537 3b797b23 humkyung
                this.AngleValue = ((this.Members[0]).DrawingData as TextControl).CommentAngle;
1538 992a98b4 KangIngu
            }
1539
            /// up to here
1540
1541 e5bd2147 swate0609
            //dBeforeAngle = this.angleValue;
1542 fd452a01 swate0609
1543 01cbc243 KangIngu
            if (ViewerDataModel.Instance.UndoDataList == null)
1544 787a4489 KangIngu
            {
1545
                return;
1546
            }
1547
1548 873011c4 humkyung
            //if ((ViewerDataModel.Instance.UndoDataList.Count > 0) && ViewerDataModel.Instance.UndoDataList.LastOrDefault().Event == EventType.Thumb)
1549 e5bd2147 swate0609
            //{
1550
            //    return;
1551
            //}
1552 d128ceb2 humkyung
1553 873011c4 humkyung
            //if ((ViewerDataModel.Instance.UndoDataList.Count > 0) && ViewerDataModel.Instance.UndoDataList.LastOrDefault().MarkupDataColl != null)
1554 e5bd2147 swate0609
            //{
1555 873011c4 humkyung
            //    if (ViewerDataModel.Instance.UndoDataList.LastOrDefault().MarkupDataColl.Count > 0)
1556 e5bd2147 swate0609
            //    {
1557 873011c4 humkyung
            //        if (ViewerDataModel.Instance.UndoDataList.LastOrDefault().MarkupDataColl.FirstOrDefault().PointSet != null)
1558 e5bd2147 swate0609
            //        {
1559
            //            return;
1560
            //        }
1561
            //    }
1562
            //}
1563 787a4489 KangIngu
1564 4913851c humkyung
            var comments = (from drawing in this.Members
1565 d128ceb2 humkyung
                            select drawing.DrawingData as CommentUserInfo).ToList();
1566 e5bd2147 swate0609
            UndoCommand.Instance.Push(comments);
1567 787a4489 KangIngu
        }
1568 29010418 ljiyeon
        
1569 787a4489 KangIngu
        private void rotate_DragCompleted(object sender, DragCompletedEventArgs e)
1570
        {
1571 902faaea taeseongkim
            rotateTop.Cursor = new Cursor(App.DefaultArrowCursorStream);
1572 d128ceb2 humkyung
1573 4913851c humkyung
            var comments = (from drawing in this.Members
1574 d128ceb2 humkyung
                            select drawing.DrawingData as CommentUserInfo).ToList();
1575 e5bd2147 swate0609
            //UndoCommand.Instance.Push(comments, this.AngleValue, dBeforeAngle);
1576 787a4489 KangIngu
        }
1577
1578
        public void ControlPointMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
1579
        {
1580 4913851c humkyung
            AdornerMember control = this.Members.FirstOrDefault();
1581 787a4489 KangIngu
1582 3dbace4e taeseongkim
            if ((control.DrawingData as ArrowTextControl) != null)
1583 787a4489 KangIngu
            {
1584
                if ((control.DrawingData as ArrowTextControl).isTrans == false && (control.DrawingData as ArrowTextControl).isFixed == false)
1585
                {
1586
                    (control.DrawingData as ArrowTextControl).isTrans = true;
1587
                }
1588
            }
1589
1590
        }
1591 eb2b9248 KangIngu
1592 787a4489 KangIngu
        public void TextControlChanger()
1593
        {
1594 4913851c humkyung
            if ((this.Members.First() as AdornerMember).DrawingData.GetType().Name == "TextControl")
1595 787a4489 KangIngu
            {
1596 4913851c humkyung
                TextControl AllControl = (this.Members.First() as AdornerMember).DrawingData as TextControl;
1597 787a4489 KangIngu
                AllControl.Base_TextBox.Focus();
1598
                AllControl.Base_TextBox.Visibility = Visibility.Visible;
1599
                AllControl.Base_TextBlock.Visibility = Visibility.Collapsed;
1600 fa48eb85 taeseongkim
                AllControl.Base_TextBox.IsHitTestVisible = true;
1601 1305c420 taeseongkim
                AllControl.IsEditingMode = true;
1602 787a4489 KangIngu
                AllControl.Base_TextBox.Focus();
1603 fa48eb85 taeseongkim
1604 787a4489 KangIngu
                AllControl.SizeChanged += (sen, ea) =>
1605
                {
1606
                    if (AllControl.Base_TextBox != null)
1607
                    {
1608
                        RectangleGeometry Data = new RectangleGeometry
1609
                        {
1610
                            Rect = new Rect()
1611
                            {
1612
                                X = AllControl.StartPoint.X,
1613
                                Y = AllControl.StartPoint.Y,
1614
                                Width = AllControl.Base_TextBox.Width,
1615
                                Height = AllControl.Base_TextBox.Height,
1616
                            }
1617
                        };
1618
1619
                        Point endPointV = new Point(Data.Bounds.Right, Data.Bounds.Bottom);
1620
                        Point middle = MathSet.getMiddlePoint(AllControl.StartPoint, endPointV);
1621
                        AllControl.Base_Grid.RenderTransform = new RotateTransform()
1622
                        {
1623 fa48eb85 taeseongkim
                            Angle = AllControl.CommentAngle,
1624 787a4489 KangIngu
                            CenterX = middle.X,
1625
                            CenterY = middle.Y,
1626
                        };
1627
                    }
1628
                    BorderUpdate();
1629
                };
1630
            }
1631
        }
1632 eb2b9248 KangIngu
1633 787a4489 KangIngu
        private void RectThumb_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) //더블클릭
1634
        {
1635 4913851c humkyung
            if (e.ClickCount == 2 && this.Members.Count == 1)
1636 787a4489 KangIngu
            {
1637 4913851c humkyung
                if ((this.Members.First() as AdornerMember).DrawingData.GetType().Name == "TextControl")
1638 787a4489 KangIngu
                {
1639 1305c420 taeseongkim
                    SelectionSet.Instance.UnSelect(ViewerDataModel.Instance.SystemMain.dzMainMenu);
1640 29010418 ljiyeon
                    TextControlChanger();                    
1641 787a4489 KangIngu
                }
1642
1643 4913851c humkyung
                else if ((this.Members.First() as AdornerMember).DrawingData.GetType().Name == "ArrowTextControl")
1644 787a4489 KangIngu
                {
1645 4913851c humkyung
                    ArrowTextControl AllControl = (this.Members.First() as AdornerMember).DrawingData as ArrowTextControl;
1646
                    Thumb tm = (this.Members.First() as AdornerMember).ThumbList.Last();
1647 1305c420 taeseongkim
               
1648 3797ff05 djkim
                    //ArrowControl TextBox Thumb없애기
1649 787a4489 KangIngu
                    tm.Visibility = Visibility.Collapsed;
1650
1651 4913851c humkyung
                    ((this.Members.First() as AdornerMember).DrawingData as ArrowTextControl).Base_TextBox.IsHitTestVisible = true;
1652 1305c420 taeseongkim
                    SelectionSet.Instance.UnSelect(ViewerDataModel.Instance.SystemMain.dzMainMenu);
1653
1654
                    ((ArrowTextControl)AllControl).Base_TextBox.Focus();
1655 29010418 ljiyeon
                    
1656 1305c420 taeseongkim
1657 787a4489 KangIngu
                    ((ArrowTextControl)AllControl).Base_TextBox.SizeChanged += (sen, ea) =>
1658
1659
                    {
1660
                        tm.Width = (AllControl as ArrowTextControl).BoxWidth;
1661
                        tm.Height = (AllControl as ArrowTextControl).BoxHeight;
1662
1663
                        List<Point> ps = new List<Point>();
1664 29010418 ljiyeon
                        
1665 787a4489 KangIngu
                        ps.Add(new Point(Canvas.GetLeft(AllControl.Base_TextBox) + AllControl.BoxWidth / 2, Canvas.GetTop(AllControl.Base_TextBox))); //상단
1666
                        ps.Add(new Point(Canvas.GetLeft(AllControl.Base_TextBox) + AllControl.BoxWidth / 2, Canvas.GetTop(AllControl.Base_TextBox) + AllControl.BoxHeight)); // 하단
1667
                        ps.Add(new Point(Canvas.GetLeft(AllControl.Base_TextBox), Canvas.GetTop(AllControl.Base_TextBox) + AllControl.BoxHeight / 2)); //좌단
1668
                        ps.Add(new Point(Canvas.GetLeft(AllControl.Base_TextBox) + AllControl.BoxWidth, Canvas.GetTop(AllControl.Base_TextBox) + AllControl.BoxHeight / 2));  //우단
1669
1670
1671
1672
1673
                        var endP = MathSet.getNearPoint(ps, AllControl.MidPoint);
1674
                        var tempP = MathSet.getMiddlePoint(AllControl.StartPoint, endP);
1675
                        if (AllControl.isTrans)
1676
                        {
1677 4913851c humkyung
                            Canvas.SetLeft((this.Members.First() as AdornerMember).ThumbList[1], AllControl.MidPoint.X);
1678
                            Canvas.SetTop((this.Members.First() as AdornerMember).ThumbList[1], AllControl.MidPoint.Y);
1679 787a4489 KangIngu
                        }
1680
                        else
1681
                        {
1682 4913851c humkyung
                            Canvas.SetLeft((this.Members.First() as AdornerMember).ThumbList[1], tempP.X);
1683
                            Canvas.SetTop((this.Members.First() as AdornerMember).ThumbList[1], tempP.Y);
1684 787a4489 KangIngu
                        }
1685
1686 9b7cda70 KangIngu
1687 787a4489 KangIngu
                        BorderUpdate();
1688 9b7cda70 KangIngu
1689 787a4489 KangIngu
                    };
1690
                }
1691 4913851c humkyung
                else if ((this.Members.First() as AdornerMember).DrawingData.GetType().Name == "DateControl")
1692 787a4489 KangIngu
                {
1693 4913851c humkyung
                    DateControl data = (this.Members.First() as AdornerMember).DrawingData as DateControl;
1694 787a4489 KangIngu
                    CalendarControl instanceCal = new CalendarControl(data.Text);
1695
                    //dropData.IsOpen = true;
1696
                    RadWindow rc = new RadWindow();
1697
                    rc.Width = 300;
1698
                    rc.Height = 300;
1699
                    rc.Header = "Change Date";
1700
                    rc.Content = instanceCal;
1701
                    rc.BorderThickness = new Thickness(3);
1702
                    rc.ResizeMode = ResizeMode.NoResize;
1703
                    rc.WindowStartupLocation = WindowStartupLocation.CenterScreen;
1704
                    rc.ModalBackground = new SolidColorBrush(Colors.Black);
1705
                    rc.ModalBackground.Opacity = 0.6;
1706
                    Telerik.Windows.Controls.StyleManager.SetTheme(rc, new Telerik.Windows.Controls.Windows8Theme());
1707
                    instanceCal.changeDateCal.SelectionChanged += (sen, ea) =>
1708
                    {
1709
                        data.Text = instanceCal.changeDateCal.SelectedDate.Value.ToShortDateString();
1710
                        rc.Close();
1711
                    };
1712
                    rc.ShowDialog();
1713
                    //CalendarControl.xaml
1714
                }
1715 4913851c humkyung
                else if ((this.Members.First() as AdornerMember).DrawingData.GetType().Name == "ArcControl")
1716 787a4489 KangIngu
                {
1717 4913851c humkyung
                    ArcControl instance = ((this.Members.First() as AdornerMember).DrawingData as ArcControl);
1718 787a4489 KangIngu
                    if (instance.isTransOn)
1719
                    {
1720
                        instance.isTransOn = false;
1721
                    }
1722
                    else
1723
                    {
1724
                        instance.isTransOn = true;
1725
                    }
1726 661b7416 humkyung
                    ///instance.SetArcPath();
1727 787a4489 KangIngu
                    BorderUpdate();
1728
                }
1729 4913851c humkyung
                else if ((this.Members.First() as AdornerMember).DrawingData.GetType().Name == "ArrowArcControl")
1730 40b3ce25 ljiyeon
                {
1731 4913851c humkyung
                    ArrowArcControl instance = ((this.Members.First() as AdornerMember).DrawingData as ArrowArcControl);
1732 40b3ce25 ljiyeon
                    if (instance.isTransOn)
1733
                    {
1734
                        instance.isTransOn = false;
1735
                    }
1736
                    else
1737
                    {
1738
                        instance.isTransOn = true;
1739
                    }
1740
                    instance.SetArcPath();
1741
                    BorderUpdate();
1742
                }
1743 787a4489 KangIngu
1744
            }
1745 29010418 ljiyeon
            
1746 787a4489 KangIngu
        }
1747
        #endregion
1748
1749
        private void DragThumb_MouseDoubleClick(object sender, MouseButtonEventArgs e)
1750
        {
1751 3b797b23 humkyung
            if ((this.Members[0] as AdornerMember).DrawingData.GetType().Name == "TextControl" 
1752
                || (this.Members[0] as AdornerMember).DrawingData.GetType().Name == "ArrowTextControl")
1753 787a4489 KangIngu
            {
1754
                DragThumb.Visibility = Visibility.Collapsed;
1755 9b7cda70 KangIngu
            }
1756 787a4489 KangIngu
        }
1757
    }
1758
}
클립보드 이미지 추가 (최대 크기: 500 MB)