Fork me on Github
摘要: MainView.xaml <Grid> <Grid.RowDefinitions> <RowDefinition Height="30" /> <RowDefinition /> </Grid.RowDefinitions> <StackPanel Orientation="Horizontal" 阅读全文
posted @ 2025-04-21 11:13 昂昂呀 阅读(28) 评论(0) 推荐(0)
摘要: public class ObservableObject : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; public void RaisePropertyChanged([C 阅读全文
posted @ 2025-04-21 10:39 昂昂呀 阅读(10) 评论(0) 推荐(0)
摘要: 一、DelegateCommand<T>(推荐) public class DelegateCommand : ICommand { public event EventHandler CanExecuteChanged; private Action action; public Delegate 阅读全文
posted @ 2025-04-21 10:38 昂昂呀 阅读(15) 评论(0) 推荐(0)