文章分类 -  C#

WPF中INotifyPropertyChanged
摘要:INotifyPropertyChanged public class ObservableObject : INotifyPropertyChanged { public event PropertyChangedEventHandler? PropertyChanged; protected v 阅读全文
posted @ 2025-02-26 15:18 每天一点点进步 阅读(5) 评论(0) 推荐(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) 推荐(0)
MysqlHelper
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using MySql.Data.MySqlClient; using MySql; us 阅读全文
posted @ 2025-02-26 13:50 每天一点点进步 阅读(12) 评论(0) 推荐(0)