您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
ListBox 控件是用来显示一系列选项的控件,通常用来实现下拉选择框或者多选框。在使用 ListBox 控件时,我们通常需要将数据与其绑定,并对数据进行校验。
<ListBox ItemsSource="{Binding Items}" DisplayMemberPath="Name"/>
public class Item : IDataErrorInfo
{
public string Name { get; set; }
public string this[string columnName]
{
get
{
if (columnName == "Name" && string.IsNullOrEmpty(Name))
{
return "Name cannot be empty";
}
return null;
}
}
public string Error => null;
}
然后在 XAML 中,使用 Validation.ErrorTemplate 来显示校验错误信息。
<ListBox ItemsSource="{Binding Items}" DisplayMemberPath="Name">
<Validation.ErrorTemplate>
<ControlTemplate>
<TextBlock Text="{Binding ValidationError.ErrorContent}" Foreground="Red"/>
</ControlTemplate>
</Validation.ErrorTemplate>
</ListBox>
通过以上方法,我们可以实现 ListBox 控件的项数据绑定与数据校验。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。