在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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。