多级 tabcontrol - 我们使用哪个集合来绑定 mvvm
我有一个使用 mvvm 模式的 wpf 应用程序。
我需要在我的视图模型中有一个集合...我可以将其绑定到多级选项卡控件。
在这种情况下我可以使用什么类型的集合???
C# 3.5 中有分层集合吗???
I have a wpf application which uses mvvm pattern.
I need to have a collection in my view-model...which i can bind to multi level tab control.
What type of collection I can use in this case ???
Is there any hierarchical collection in C# 3.5 ???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以将其绑定到像这样的集合
Set context to List <节点>
绑定到一个或多个节点
公共类 Node
{
公开列表<节点>节点{获取;设置;}
}
You may be able to bind it to a collection like this
Set context to List < Node >
bind to Node or Nodes
public class Node
{
public List < Node > Nodes {get;set;}
}