我知道这个问题已经被问过一段时间了,但是因为我一直在寻找这个问题的解决方案,所以我想其他人也可以。
所以这是正确的语法ListStore.Foreach
(我假设语法是相同的TreeModel.Foreach
):
listStore.Foreach(new TreeModelForeachFunc(delegate(TreeModel model, TreePath path, TreeIter iter) {
// Do whatever you want to do here...
}));
我希望这对某人有所帮助。