以编程方式设置所选项目



我想以编程方式设置要选择的树ctrl项的状态,然后在其他地方处理它。我想这样做是为了重用当用户单击它时调用的代码。我尝试了,但失败了,为什么?

// somewhere in the code
m_tree.SetItemState(hItemToBeSelected, TVIS_SELECTED, TVIS_SELECTED);
CommonFunction();
// elsewhere
CommonFunction()
{
HTREEITEM h = m_tree.GetSelectedItem();// this returns NULL.
}

我该怎么做?

您需要使用SelectItem而不是SetItemState: http://msdn.microsoft.com/en-us/library/w8hy20sy(v=VS.100).aspx

相关内容

  • 没有找到相关文章

最新更新