星火微课系统客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 4 години
преди 3 години
преди 4 години
1234567891011121314
  1. using System.ComponentModel;
  2. namespace XHWK.Model
  3. {
  4. public class NotifyModel : INotifyPropertyChanged
  5. {
  6. public event PropertyChangedEventHandler PropertyChanged;
  7. public void OnPropertyChanged(string propertyName)
  8. {
  9. PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
  10. }
  11. }
  12. }