Tôi có lớp học này
public class Tooth
{
public string Id {get;set;}
}
Và kiểm soát sữa trứng này
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));
}
Vấn đề của tôi là sau khi Thêm thuộc tính phụ thuộc Răng , lỗi này xảy ra
Loại giá trị mặc định không khớp với loại thuộc tính
Chính xác thì lỗi này có nghĩa là gì? Cách hiện tại để thiết lập điều này là gìDP