개정판 5ce56a3a
Symbol 기능 추가 및 Entity 테이블 추가
상단 네비게이션 View데이터 Comment로 통합
MarkupToPDF/Controls/Line/LineControl.cs | ||
---|---|---|
80 | 80 |
"LineSize", typeof(double), typeof(LineControl), new PropertyMetadata((Double)3)); |
81 | 81 |
|
82 | 82 |
public static readonly DependencyProperty IntervalProperty = DependencyProperty.Register( |
83 |
"Interval", typeof(double), typeof(LineControl), new PropertyMetadata((double)10));
|
|
83 |
"Interval", typeof(double), typeof(LineControl), new PropertyMetadata((Double)10, PointValueChanged));
|
|
84 | 84 |
|
85 | 85 |
//강인구 추가 |
86 | 86 |
public static readonly DependencyProperty DashSizeProperty = DependencyProperty.Register( |
... | ... | |
186 | 186 |
} |
187 | 187 |
} |
188 | 188 |
|
189 |
public double Interval
|
|
189 |
public Double Interval
|
|
190 | 190 |
{ |
191 |
get { return (double)GetValue(IntervalProperty); }
|
|
191 |
get { return (Double)GetValue(IntervalProperty); }
|
|
192 | 192 |
set |
193 | 193 |
{ |
194 | 194 |
if (this.Interval != value) |
내보내기 Unified diff