프로젝트

일반

사용자정보

개정판 5ce56a3a

ID5ce56a3a08509844f0bed03301750089806d570e
상위 a0bab669
하위 d4b0c723

KangIngu 이(가) 약 7년 전에 추가함

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

클립보드 이미지 추가 (최대 크기: 500 MB)