CTreeCtrl 以编程方式设置所选项目
Posted
技术标签:
【中文标题】CTreeCtrl 以编程方式设置所选项目【英文标题】:CTreeCtrl setting selected item programmatically 【发布时间】:2011-05-01 14:56:09 【问题描述】:我想以编程方式设置要选择的树 ctrl 项的状态,然后在其他地方处理它。我想这样做以重用用户单击它时调用的代码。我尝试了这个,但它失败了,为什么?
// somewhere in the code
m_tree.SetItemState(hItemToBeSelected, TVIS_SELECTED, TVIS_SELECTED);
CommonFunction();
// elsewhere
CommonFunction()
HTREEITEM h = m_tree.GetSelectedItem();// this returns NULL.
我该怎么做?
【问题讨论】:
【参考方案1】:您想使用 SelectItem 而不是 SetItemState:http://msdn.microsoft.com/en-us/library/w8hy20sy(v=VS.100).aspx
【讨论】:
以上是关于CTreeCtrl 以编程方式设置所选项目的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 MVVM 应用程序在 WPF 中以编程方式设置 DataGrid 的选定项?