在objectListView中为treeListView建立一个模型
本文关键字:一个 模型 objectListView 中为 treeListView 建立 | 更新日期: 2023-09-27 18:15:19
我一直在尝试为treeListView建立一个模型,但似乎无法为我的需求获得正确的结构。我是objectListView的新手,看过了示例和食谱,但不确定如何正确构建我的模型。以下是我的模型的简化版本:
我有一个家长,我们称它为a。
有2列(Name, Value)。"A"将是父节点的名称,Value可以设置为"1"。
"A"有两个没有Name但都带有Value的子节点,第一个子节点为"2",第二个子节点为"3"。树停在这里。
我们有一个这样的结构:
Name Value
A 1
2
3
下面是设置treeListView的代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TreeListViewTest1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.treeListView1.CanExpandGetter = delegate(object x)
{
return true;
};
this.treeListView1.ChildrenGetter = delegate(object x)
{
Contract contract = x as Contract;
return contrat.Children;
};
column1.AspectGetter = delegate(object x)
{
if(x is Contract)
{
return ((Contract)x).Name;
}
else
{
return " ";
}
};
column2.AspectGetter = delegate(object x)
{
if(x is Contract)
{
return ((Contract)x).Value;
}
else
{
Double d = (Double)x;
return d.ToString();
}
};
this.treeListView1.AddObject(new Contract("A", 1));
}
private void treeListView1_SelectedIndexChanged(object sender, EventArgs e)
{
}
}
public class Contract
{
public string Name { get; set;}
public Double Value { get; set; }
public List<Double> Children {get; set;}
public Contract(string name, Double value)
{
Name = name;
Value = value;
Children = new List<Double>();
Children.Add(2);
Children.Add(3);
}
}
}
如何阻止子节点拥有扩展符号(+),因为它们不能展开,因为它们不是父节点?
<什么是AspectName和AspectGetter?你必须告诉列,从哪里获取数据。您可以将列的AspectName属性设置为模型对象属性的名称,或者您可以使用AspectGetter委托,该委托给您完全控制在列中放置的内容。
AspectName例子/strong>
你可以在VS设计器中设置方面的名称,或者像这样手动设置:
// this would tell the column to get the content from the property named "Name"
olvColumn1.AspectName = "Name";
AspectGetter示例
在本例中我们附加了一个匿名方法,您也可以使用具有匹配签名的方法名。
// this lets you handle the model object directly
olvColumn1.AspectGetter = delegate(object rowObject) {
// check if that is the expected model type
if (rowObject is MyObject) {
// just return the value of "Name" in this simple case
return ((MyObject)rowObject).Name;
} else {
return "";
}
};
我不知道孩子可以和父母不一样。我怎么构造它呢?我有点困惑,为什么父母和孩子会不一样。
返回任何类型的List在childgetter中。使用AspectName, ObjectListView只是尝试查找具有给定名称的属性。使用Aspectgetter,您可以手动处理内容,并且可以从行中检查模型的类型。
如何阻止子节点拥有扩展符号(+),因为它们不能展开,因为它们不是父节点?
您必须检查对象是否实际上有任何子对象。如果是这种情况,只在CanExpandGetter中返回true
。例子:
this.treeListView1.CanExpandGetter = delegate(object x) {
if (rowObject is MyObject) {
return (((MyObject)x).Children.Count > 0);
} else {
return false;
}
};