Imprägnierungen edit

Edit button erst verfügbar wenn ein Imprägnierung ausgewählt wurde
This commit is contained in:
HuskyTeufel
2022-03-30 13:22:57 +02:00
parent 4689f2e4da
commit acc577eb32
2 changed files with 14 additions and 0 deletions

View File

@@ -27,9 +27,11 @@ namespace DaSaSo.ViewModel
{
_selectedImpregnation = value;
OnPropertyChanged();
OnPropertyChanged(nameof(CanSelectImpregnation));
}
}
}
public bool CanSelectImpregnation => SelectedImpregnation != null;
public ICommand EditImpregnationCommand { get; set; }
public ICommand AddImpregnationCommand { get; set; }
bool _isLoading;