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 がすぐに表示できることを願っていますが、失敗しました。どうすればよいですか?