Bu sınıfa sahibim
public class Tooth
{
public string Id {get;set;}
}
Ve bu custrom kontrolü
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));
}
Benim sorunum Diş bağımlılığı özelliğinden sonra bu hata oluyor
Varsayılan değer türü, özelliğin türüyle eşleşmiyor
Bu hata tam olarak ne anlama geliyor? Bunu ayarlamanın şu anki yolu nedirDP