개정판 b3fb7321
issue #756 화살표 사이즈 적용이 정상적으로 되지 않는 현상 수정
MarkupToPDF/Controls/Line/ArrowControl_Multi.cs | ||
---|---|---|
53 | 53 |
"UserID", typeof(string), typeof(ArrowControl_Multi), new PropertyMetadata(null)); |
54 | 54 |
|
55 | 55 |
public static readonly DependencyProperty LineSizeProperty = DependencyProperty.Register( |
56 |
"LineSize", typeof(double), typeof(ArrowControl_Multi), new PropertyMetadata((Double)3)); |
|
56 |
"LineSize", typeof(double), typeof(ArrowControl_Multi), new PropertyMetadata((Double)3, PointValueChanged));
|
|
57 | 57 |
|
58 | 58 |
public static readonly DependencyProperty DashSizeProperty = DependencyProperty.Register( |
59 | 59 |
"DashSize", typeof(DoubleCollection), typeof(ArrowControl_Multi), new PropertyMetadata(new DoubleCollection { 99999099 }, PointValueChanged)); |
MarkupToPDF/Controls/Line/LineControl.cs | ||
---|---|---|
77 | 77 |
"UserID", typeof(string), typeof(LineControl), new PropertyMetadata(null)); |
78 | 78 |
|
79 | 79 |
public static readonly DependencyProperty LineSizeProperty = DependencyProperty.Register( |
80 |
"LineSize", typeof(double), typeof(LineControl), new PropertyMetadata((Double)3)); |
|
80 |
"LineSize", typeof(double), typeof(LineControl), new PropertyMetadata((Double)3, PointValueChanged));
|
|
81 | 81 |
|
82 | 82 |
public static readonly DependencyProperty IntervalProperty = DependencyProperty.Register( |
83 | 83 |
"Interval", typeof(double), typeof(LineControl), new PropertyMetadata((Double)10, PointValueChanged)); |
내보내기 Unified diff