码迷,mamicode.com
首页 > 编程语言 > 详细

MFC中CTreeGridCtrl中设置TreeNode列为Checkbox后,如果获取选中的Cell

时间:2017-05-18 11:37:23      阅读:651      评论:0      收藏:0      [点我收藏+]

标签:typeid   ++   cell   数据   treegrid   count   需要   eid   row   

1、设置TreeNode列为CheckBox:

m_Grid.SetTreeColumnCellTypeID(CT_CHECKBOX);

2、获取选中的Cell,此处需要强转:

int nRow = m_page1.m_Grid.GetRowCount();
for (int i = 0; i < nRow; ++i)
{
CGridCellCheck* cc = dynamic_cast<CGridCellCheck*>(m_page1.m_Grid.GetCell(i,1));
if (cc && cc->GetCheck())
{

  //保存数据

}

MFC中CTreeGridCtrl中设置TreeNode列为Checkbox后,如果获取选中的Cell

标签:typeid   ++   cell   数据   treegrid   count   需要   eid   row   

原文地址:http://www.cnblogs.com/pkfd/p/6871973.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!