摘要:
一、添加引入导入(不推荐) 1.将要导入模块的输出类型改为类库 2.添加要导入模块的配置文件 public class ModuleAProfile : IModule { public void OnInitialized(IContainerProvider containerProvider) 阅读全文
摘要:
public class ObservableObject : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; public void RaisePropertyChanged([C 阅读全文
摘要:
一、DelegateCommand<T>(推荐) public class DelegateCommand : ICommand { public event EventHandler CanExecuteChanged; private Action action; public Delegate 阅读全文