如何使用 Icommand 清除视图模型中按钮单击时的数字类型文本框
How to clear the numeric type textboxes on Button click in View model using Icommand
Integer类型的Id和Age应该怎么写?我应该如何清除表单中的字段? Xaml代码
<Button Command="{Binding CmdClear}" Content="Clear"></Button>
ViewModel
public ICommand CmdClear
{
get
{
return new DelegateCommand(ClearFields);
}
}
private void ClearFields()
{
Id =;
Name = string.Empty;
Age = ;
Country = string.Empty;
Active = string.Empty;
}
使其成为可空字段,如 Id?
和 Age?
。
或者
您可以在 XAML TargetNullValue=''