Ich habe diese Klasse
public class Tooth
{
public string Id {get;set;}
}
Und diese Branchenkontrolle
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));
}
Mein Problem ist, dass nach der Eigenschaft " Zahnabhängigkeit hinzufügen" dieser Fehler auftritt
Der Standardwerttyp stimmt nicht mit dem Typ der Eigenschaft überein
Was genau bedeutet dieser Fehler? Wie wird dies derzeit eingestellt?DP
c#
wpf
wpf-controls
Juan Pablo Gomez
quelle
quelle
Ich bin wegen des Titels der Frage hierher gekommen, aber mein Typ war ein dezimaler Standardwert und ich habe ihn mit diesem 0,0M https://msdn.microsoft.com/en-us/library/83fhsxwc.aspx gelöst
quelle