我有一个 Prism 项目:CustomerView、CustomerViewModel、CustomerModel。后者具有属性
private int _id;
public int ID
{
get { return _id; }
set { SetProperty(ref _id, value); }
}
CustomerView 有一个 TextBox 来显示 ID。我想要的是 - 能够处理用户在该 TextBox 中输入一些字符串的情况。在 CustomerModel 或 CustomerViewModel 中处理。如果用户输入像“1abc”这样的字符串,CustomerModel.ID 上的属性设置器永远不会触发。我确实了解 ValidationRules,但那不是我需要的。我想得到那个“1abc”
获取字符串并将其转换为 int