개정판 168f8027
issue #812 상단 Angle 컨트롤에 아무것도 안나오는 문제 및 빌드 오류 수정
Change-Id: Ic2b9da31e24cba6185dd5765a1ce2947fa1ebf55
MarkupToPDF/Controls/Polygon/PolygonControl.cs | ||
---|---|---|
384 | 384 |
} |
385 | 385 |
} |
386 | 386 |
|
387 |
public double Angle |
|
388 |
{ |
|
389 |
get { return (double)GetValue(AngleProperty); } |
|
390 |
set |
|
391 |
{ |
|
392 |
if (this.Angle != value) |
|
393 |
{ |
|
394 |
SetValue(AngleProperty, value); |
|
395 |
OnPropertyChanged("Angle"); |
|
396 |
} |
|
397 |
} |
|
398 |
} |
|
387 |
//public double Angle
|
|
388 |
//{
|
|
389 |
// get { return (double)GetValue(AngleProperty); }
|
|
390 |
// set
|
|
391 |
// {
|
|
392 |
// if (this.Angle != value)
|
|
393 |
// {
|
|
394 |
// SetValue(AngleProperty, value);
|
|
395 |
// OnPropertyChanged("Angle");
|
|
396 |
// }
|
|
397 |
// }
|
|
398 |
//}
|
|
399 | 399 |
|
400 | 400 |
public Point EndPoint |
401 | 401 |
{ |
... | ... | |
493 | 493 |
this.PointSet.RemoveAt(this.PointSet.Count - 1); |
494 | 494 |
|
495 | 495 |
Point tmp = pt; |
496 |
|
|
496 | 497 |
if (bAxisLocked || bShiftKeyPressed) |
497 | 498 |
{ |
498 |
string angle = MathSet.returnAngleString(this.PointSet[this.PointSet.Count - 1], ref tmp, true);
|
|
499 |
Angle = MathSet.returnAngle(this.PointSet[this.PointSet.Count - 1], ref tmp, true);
|
|
499 | 500 |
} |
501 |
|
|
500 | 502 |
this.PointSet.Add(tmp); |
501 | 503 |
|
502 | 504 |
this.UpdateControl(); |
내보내기 Unified diff