class TextListBoxVMpublic : ViewModelBase { public TextListBoxVMpublic() { var list = this.GetEmployees(); this.filteredEmploees = new CollectionViewSource(); this.filteredEmploees.Source = list; this.filteredEmploees.Filter += this.EmployeeFilter; }…
实体类: 员工类: public class Department : ObservableCollection<Employee> { public string DepName { get; set; } public ObservableCollection<Employee> Employees { get; set; } } 部门类: public class Employee { public int Number { get; set; } //工号 public s…