WPF中INotifyPropertyChanged
摘要:INotifyPropertyChanged public class ObservableObject : INotifyPropertyChanged { public event PropertyChangedEventHandler? PropertyChanged; protected v
阅读全文
posted @
2025-02-26 15:18
每天一点点进步
阅读(5)
推荐(0)
WPF中ICommand
摘要:RelayCommand继承ICommand public class RelayCommand : ICommand { public event EventHandler CanExecuteChanged { add { if (_canExecute != null) CommandMana
阅读全文
posted @
2025-02-26 15:07
每天一点点进步
阅读(9)
推荐(0)