Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道 InsertItem 是用来在 tabctrl 中添加新标签的,但是我需要在创建后更改标签的标题,我使用关键字 tabctrl 和标题来搜索旧文章,但是没有关系问题来解决它,我要更改标题标签页...
好的,
我得到了解决方案,如下代码
TC_ITEM TabCtrlItem; switch(m_tabCtrl.GetCurSel()) { case TAB1: TabCtrlItem.mask = TCIF_TEXT; TabCtrlItem.pszText = _T("Some Text"); m_tabCtrl.SetItem(TAB1, &TabCtrlItem );