您好,登錄后才能下訂單哦!
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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。