이 수업이 있습니다
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