我有一个名为 VoucherEntity 的类,包括一个名为“Customer”的属性,一个 CustomerEntity 类的对象,所以我有以下代码,
<TextBox Height="23" IsReadOnly="False" HorizontalAlignment="Stretch" Margin="124,48,174,0" Name="txt_customer" VerticalAlignment="Top" Text="{Binding Path=Customer.Name}" />
在 .cs 文件中,我有以下代码
_voucher = new VoucherEntity();
this.DataContext = _voucher;
意思是,一开始Customer属性为null,点击按钮后,我会给_voucher的Customer属性一个CustomerEntity对象,然后希望TextBox能立即显示,但是失败了,怎么办?