本文整理汇总了C++中CControlBase::IsThisObject方法的典型用法代码示例。如果您正苦于以下问题:C++ CControlBase::IsThisObject方法的具体用法?C++ CControlBase::IsThisObject怎么用?C++ CControlBase::IsThisObject使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CControlBase
的用法示例。
在下文中一共展示了CControlBase::IsThisObject方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: RemoveControl
// 清除指定名字的子控件
BOOL CControlBase::RemoveControl(CString strControlName, UINT uControlID)
{
vector<CControlBase*>::iterator it;
for(it=m_vecControl.begin();it!=m_vecControl.end();++it)
{
CControlBase* pControlBase = *it;
if (pControlBase && pControlBase->IsThisObject(uControlID, strControlName))
{
// 如果是焦点控件,则需要先将焦点设置为空
if(pControlBase->IsFocusControl())
{
CDlgBase* pDlg = GetParentDialog(FALSE);
if(pDlg)
{
pDlg->SetFocusControlPtr(NULL);
}
}
m_vecControl.erase(it);
delete pControlBase;
return TRUE;
}
}
return FALSE;
}
示例2: RemoveControl
// 清除指定名字的子控件
BOOL CControlBase::RemoveControl(CString strControlName, UINT uControlID)
{
vector<CControlBase*>::iterator it;
for(it=m_vecControl.begin();it!=m_vecControl.end();++it)
{
CControlBase* pControlBase = *it;
if (pControlBase && pControlBase->IsThisObject(uControlID, strControlName))
{
m_vecControl.erase(it);
delete pControlBase;
return TRUE;
}
}
return FALSE;
}
示例3: OnBaseMessage
// 消息响应
LRESULT CDlgPopup::OnBaseMessage(UINT uID, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
CControlBase* pControl = GetControl(uID);
if(pControl == NULL)
{
return 0L;
}
// 点击了关闭按钮,则执行关闭动作
if(pControl->IsThisObject(BT_CLOSE, NAME_BT_CLOSE))
{
CloseWindow();
}else
{
OnMessage(uID, uMsg, wParam, lParam);
}
return 0L;
}