您好,登錄后才能下訂單哦!
在WPF中,ListBox控件的項數據綁定可以通過將ListBox的ItemsSource屬性綁定到一個集合對象來實現。具體步驟如下:
在ViewModel中創建一個ObservableCollection對象,并將需要綁定到ListBox的項數據添加到該集合中。
在XAML中,將ListBox的ItemsSource屬性綁定到ViewModel中的ObservableCollection對象。
<ListBox ItemsSource="{Binding Items}" />
public class ViewModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private ObservableCollection<string> _items;
public ObservableCollection<string> Items
{
get { return _items; }
set
{
_items = value;
OnPropertyChanged("Items");
}
}
protected void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
public MainWindow()
{
InitializeComponent();
ViewModel vm = new ViewModel();
vm.Items = new ObservableCollection<string>() { "Item 1", "Item 2", "Item 3" };
DataContext = vm;
}
通過以上步驟,就可以實現ListBox控件的項數據綁定。當ObservableCollection中的數據發生變化時,ListBox中的項會自動更新。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。