MFC怎么设置RibbonCheckBox状态?它也没个setcheck之类的函数...
发布网友
发布时间:2024-10-13 23:12
我来回答
共3个回答
热心网友
时间:2024-10-14 04:48
((CButton*)GetDlgItem(IDC_RADIO1))->SetCheck(TRUE);
热心网友
时间:2024-10-14 04:45
生成一个带Ribbon的工程,MainFrm.cpp里面有现成的代码,照着写就可以了:
ON_COMMAND(ID_VIEW_CAPTION_BAR, &CMainFrame::OnViewCaptionBar)
ON_UPDATE_COMMAND_UI(ID_VIEW_CAPTION_BAR,
&CMainFrame::OnUpdateViewCaptionBar)
============================================================
CMFCRibbonButton* pBtnCaptionBar = new CMFCRibbonCheckBox(ID_VIEW_CAPTION_BAR, strTemp);
pPanelView->Add(pBtnCaptionBar);
============================================================
void CMainFrame::OnViewCaptionBar()
{
m_wndCaptionBar.ShowWindow(m_wndCaptionBar.IsVisible() ? SW_HIDE : SW_SHOW);
RecalcLayout(FALSE);
}
void CMainFrame::OnUpdateViewCaptionBar(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_wndCaptionBar.IsVisible());
}
热心网友
时间:2024-10-14 04:45
单选框,是一种按钮,直接双击它,在它里面写代码就行了
就像是写按钮的事件一样