要在WPF ListBox中使用ItemSource将其他项添加到ListBox,您需要遵循以下步骤:
<ListBox ItemsSource="{Binding MyDataList}">
public ObservableCollection<string> MyDataList { get; set; }
MyDataList = new ObservableCollection<string>();
MyDataList.Add("Item 1");
MyDataList.Add("Item 2");
MyDataList.Add("Item 3");
MyDataList.Add("Item 4");
public class MyViewModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
MyDataList.Add("Item 4");
OnPropertyChanged("MyDataList");
通过以上步骤,您可以在WPF ListBox中使用ItemSource将其他项添加到ListBox中。
领取专属 10元无门槛券
手把手带您无忧上云