如何根据用户选择告诉我的 TextBox 绑定到不同的属性。我的情况是:
客户具有以下属性:
- 邮寄地址和
- 收件地址。
编辑或创建这些时,有一个单选按钮用于选择要编辑的地址。因此,当我单击 Mailing Address 单选按钮时,我想将我的 TextBox 绑定到属性“ MailAddress
”,但是当单击 Shipping Address 时,我想将绑定更改为“ ShipAddress
”属性。
我知道我可以在Address
单击单选按钮时设置一个属性“”,但我想直接绑定到Customer.MailAddress
或Customer.ShipAddress
用于验证目的(需要邮件地址,但不需要发货地址)。