ich hab das Problem das meine UI den Wert nicht anzeigt, obwohl er im Hintergrund korrekt geändert wurde. INotifyfPropertyChanged ist korrekt implementiert.
Hatte jemand das Phänomen schon mal?
Grüße
public DateTime? DateTimePickerDateOfStartPrecoolingSelectedDate
{
get
{
if (!DateTimePickerDateOfStartPrecoolingIsFocused)
{
if (PreparationOfPreparationId.DateOfStartPrecooling == null)
{
return PreparationOfPreparationId.PrecoolingInsert != null ? PreparationOfPreparationId.PrecoolingInsert.Date : null;
}
}
return PreparationOfPreparationId.DateOfStartPrecooling;
}
set
{
PreparationOfPreparationId.DateOfStartPrecooling = value; Raise(nameof(DateTimePickerDateOfStartPrecoolingSelectedDate));
// DateOfEndPrecooling
Raise(nameof(DateTimePickerDateOfEndPrecoolingSelectedDate));
}
}