기본값 유형이 속성 유형과 일치하지 않습니다.


82

이 수업이 있습니다

public class Tooth
{
    public string Id {get;set;}
}

그리고이 custrom 컨트롤

public partial class ToothUI : UserControl
{
    public ToothUI()
    {
        InitializeComponent();
    }

    public Tooth Tooth
    {
        get { return (Tooth)GetValue(ToothProperty); }
        set
        {
            SetValue(ToothProperty, value);
            NombrePieza.Text =   value.Id.Replace("_",String.Empty);
        }
    }
    public static readonly DependencyProperty ToothProperty =
        DependencyProperty.Register("Tooth", typeof(Tooth), typeof(ToothUI), new PropertyMetadata(0)); 

}

내 문제는 Add Tooth 종속성 속성 후입니다 .이 오류가 발생합니다.

기본값 유형이 속성 유형과 일치하지 않습니다.

이 오류는 정확히 무엇을 의미합니까? 이것을 설정하는 현재 방법은 무엇입니까DP

답변:


160

Default value에 대한 DP당신의 유형과 일치하지 않습니다.

변화

public static readonly DependencyProperty ToothProperty =
        DependencyProperty.Register("Tooth", typeof(Tooth), typeof(ToothUI),
                                         new PropertyMetadata(0));

...에

public static readonly DependencyProperty ToothProperty =
        DependencyProperty.Register("Tooth", typeof(Tooth), typeof(ToothUI),
                                      new PropertyMetadata(default(Tooth)));

또는 DP에 대한 기본값 설정을 생략하십시오.

public static readonly DependencyProperty ToothProperty =
        DependencyProperty.Register("Tooth", typeof(Tooth), typeof(ToothUI));

2
TKS 당신의 도움을 많이
후안 파블로 고메즈

1
후안 데 도움 다행 .. :)
Rohit 버키

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.