我已经构建了一个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);
}
}
}
它给出了这个输出:
Name Value
A 1
2
3
如何在事件中更新父级和子级的column2(&#34; Value&#34;)的值? (增加父母和孩子的每个值。)
private void button1_Click(object sender, EventArgs e)
{
}
我不明白是否必须再次使用AspectGetter,或者我可以以某种方式仅修改column2中的值,然后刷新对象()。
答案 0 :(得分:2)
我不明白是否必须再次使用AspectGetter,或者我可以以某种方式仅修改column2中的值,然后刷新对象()。
不,你应该只是操纵底层模型对象并调用treeListView1.RefreshObject(myObject);
,例如,myObject
在你的情况下应该是Contract
。这将刷新相应行的内容。
我不知道你的button1_Click()应该做什么,但你显然需要引用你想要刷新的对象。例如,这可以是当前选定的对象(treeListView.SelectedObject
)。如果你告诉你想做什么,我可能会给你更多的信息。