gpt4 book ai didi

wpf - 如何在 WPF XAML 中声明命名空间?

转载 作者:行者123 更新时间:2023-12-03 10:22:36 27 4
gpt4 key购买 nike

我正在尝试在 WPF 中使用带有验证规则的数据绑定(bind)控件的验证输入。在 wpf 窗口的文件后面的代码中,我有一个类:

public class posintValidationRule : ValidationRule
{
public override ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo)
{
string _strInt = value.ToString();
int _int = -1;
if (!Int32.TryParse(_strInt, out _int))
return new ValidationResult(false, "Value must be an integer");
if (_int < 0)
return new ValidationResult(false, "Value must be positive");
return new ValidationResult(true, null);
}
}

在 XAML 中还有一个样式错误模板。

当我在 XAML 中放置一个带有验证的文本框时:
<TextBox.Text>
<Binding Path="seconds" UpdateSourceTrigger="PropertyChanged">
<Binding.ValidationRules>
<local:posintValidationRule/>
</Binding.ValidationRules>
</Binding>
</TextBox.Text>

我得到一个编译时错误:
''local' 是一个未声明的命名空间。 XML 无效。

我应该如何声明 local:posintValidationRule在我的 XAML 中?

最佳答案

在 XAML 文件的顶部,您需要声明您的“本地”命名空间是什么;以及默认的 Microsoft XAML 内容。像这样的东西:

xmlns:local="clr-namespace:YourApplication"

请注意,这假定“posintValidationRule”是在“YourApplication”的根命名空间中定义的。

关于wpf - 如何在 WPF XAML 中声明命名空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2088754/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com