前面的开发一般我会使用PropertyChanged.Fody,但ReactiveUI.Fody也能实现类似的功能。
安装Nuget包
Install-Package ReactiveUI.Fody
FodyWeavers.xml文件:
<Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd"> <ReactiveUI /> </Weavers>
附加相应的附加属性
[Reactive] public string Name { get; set; } public string FirstName { [ObservableAsProperty] get; } [ObservableAsProperty] public string FirstName { get; }
相关网址
https://github.com/kswoll/ReactiveUI.Fody
https://www.reactiveui.net/docs/
标签:Fody,string,FirstName,get,ReactiveUI,WPF,public From: https://www.cnblogs.com/wzwyc/p/17550287.html