我有一个绑定到属性(数据类型为 int 的 CustomerId)的文本框。这个文本框首先显示一个 0(零),但我想要一个没有输入的清晰文本框。
我还将其默认值设置为 null ,如下面的代码:
ValueProperty = DependencyProperty.Register(
"Value",
typeof(int?), typeof(ChooseCustomerControl),
new FrameworkPropertyMetadata(null));
我怎样才能做到这一点?