gpt4 book ai didi

c# - 将不同的集合绑定(bind)到数据网格

转载 作者:太空宇宙 更新时间:2023-11-03 10:57:06 25 4
gpt4 key购买 nike

我有一些收藏。例如,List 1List 2 .两者都是 List<Object> .

我需要做的:

1) 将它们插入 Datagrid :

Datagrid with lists

2) 为 Lists 添加新项目.例如,表单上有一些按钮。我单击它,新项目添加到第一个列表。 Datagrid现在看起来像这样:

enter image description here

3) 在某种程度上。当我想传递 Datagrid 的内容时对于我的类对象,程序必须知道 List 1现在包含 2 个项目,但是 List 2 - 1 件。

我怎样才能以最好的方式执行这些功能?

最佳答案

这是一个示例...

public class ViewModel : INotifyPropertyChanged
{
public ObservableCollection<SomeItem> VmList { get; set; }
List<SomeItem> List1 = new List<SomeItem>();
List<SomeItem> List2 = new List<SomeItem>();
public ViewModel()
{
// VmList is the item source for the grid
VmList = new ObservableCollection<SomeItem>();
// create two lists
for (int i = 0; i < 10; i++)
{
List1.Add(new SomeItem{ID = "1", Name = "Name " + i});
}
for (int i = 0; i < 10; i++)
{
List1.Add(new SomeItem { ID = "2", Name = "Name (2) " + i });
}
// merge the two separate lists
VmList.AddRange(List1);
VmList.AddRange(List2);
// get the view
var lcv = CollectionViewSource.GetDefaultView(VmList);
// apply a filter
lcv.Filter = o =>
{
var someItem = o as SomeItem;
if (someItem != null)
{
return someItem.ID == "2";
}
return false;
};
}
#region INotifyPropertyChanged Implementation
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string name)
{
var handler = System.Threading.Interlocked.CompareExchange(ref PropertyChanged, null, null);
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(name));
}
}
#endregion
}
public class SomeItem:INotifyPropertyChanged
{
private string _id;
public string ID
{
[DebuggerStepThrough]
get { return _id; }
[DebuggerStepThrough]
set
{
if (value != _id)
{
_id = value;
OnPropertyChanged("ID");
}
}
}
private string _name;
public string Name
{
[DebuggerStepThrough]
get { return _name; }
[DebuggerStepThrough]
set
{
if (value != _name)
{
_name = value;
OnPropertyChanged("Name");
}
}
}
#region INotifyPropertyChanged Implementation
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string name)
{
var handler = System.Threading.Interlocked.CompareExchange(ref PropertyChanged, null, null);
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(name));
}
}
#endregion
}
public static class Extensions
{
public static void AddRange<T>(this ObservableCollection<T> collection, IEnumerable<T> list)
{
foreach (T t in list)
{
collection.Add(t);
}
}
}

在这个例子中(这是人为设计的), View 模型构造函数创建了两个列表并将它们添加到绑定(bind)到数据网格的可观察集合中。

然后检索基础 Collection View 源并将过滤器附加到它。

在您的应用程序中,过滤器将应用于按钮事件处理程序而不是 Vm 构造函数。这只是一个示例来解释它是如何工作的。在我最初的评论中,我注意到您也可以使用 LINQ zip 运算符,但我包含了一个目前可能更有值(value)的扩展方法。它称为“AddRange”。

这种方法允许您将两个列表作为一个集合呈现,同时在幕后保持它们各自的身份。它还展示了如何使用过滤器。

Collection View Source 的文档在这里 http://msdn.microsoft.com/en-us/library/System.Windows.Data.CollectionViewSource.aspx

关于c# - 将不同的集合绑定(bind)到数据网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19088774/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com