摘要:
ObservableProperty 特性 1.工作原理 [ObservableProperty] private string? name; 此name会自动生成如下的公开属性,我们在使用时,用Name这个公开的,对name不使用 public string? Name { get => name 阅读全文
摘要:
1.本示例列举了单项绑定,双向绑定,集合绑定,静态资源绑定的示例 MainWindow.xaml.cs using System.Collections.ObjectModel; using System.ComponentModel; using System.Windows; namespace 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace 阅读全文