gpt4 book ai didi

c# - NotifyPropertyChanged 依赖属性

转载 作者:行者123 更新时间:2023-11-30 18:26:21 26 4
gpt4 key购买 nike

我有以下 View 模型

[NotifyPropertyChanged]
public class ActivateViewModel
{
public string Password { get; set; }
public bool ActivateButtonEnabled { get { return !string.IsNullOrEmpty(Password); } }
...
}

在我看来,我正在尝试根据密码文本框是否有值来启用/禁用按钮。

Password 属性更改时,

ActivateButtonEnabled 不会自动收到通知。我究竟做错了什么?我在读this article如果我理解正确的话,PostSharp 应该能够自动处理依赖属性。

最佳答案

我认为您需要以“this.Password”的形式访问密码,因为 PostSharp 期望在所有相关属性之前使用“this”访问器。

关于c# - NotifyPropertyChanged 依赖属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28685698/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com