本文整理汇总了C++中TImage::SetEnabled方法的典型用法代码示例。如果您正苦于以下问题:C++ TImage::SetEnabled方法的具体用法?C++ TImage::SetEnabled怎么用?C++ TImage::SetEnabled使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TImage
的用法示例。
在下文中一共展示了TImage::SetEnabled方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: CtrlAddItemToCoolBarList_Image
//添加Image控件到CoolBarList,
// pszString必须是动态的(非Static)
// nWidth 为0 -- 自动长度
Int32 CtrlAddItemToCoolBarList_Image(TWindow*pWin, TBarListItem* pListItem, Coord nX, Coord nY, Coord nWidth, Int32 nHeight, TBitmap * pBmp)
{
TRectangle obBtnRec(0,0,0,0);
Int32 nImageId = pListItem->AddCtrl(CTL_CLASS_IMAGE, 0, 0);
TImage* pImage = static_cast<TImage*>(pWin->GetControlPtr(nImageId));
obBtnRec.SetRect(nX, nY, nWidth, nHeight);
pImage->SetBounds(&obBtnRec);
pImage->SetBitmap(pBmp);
pImage->SetEnabled(TRUE);
return nImageId;
}
示例2: CtrlAddItemToPanel_Image
Int32 CtrlAddItemToPanel_Image(TWindow*pWin, TPanel* pPanel, Coord nX, Coord nY, Coord nWidth, Coord nHeight, TBitmap * pBmp)
{
TImage* pImage = new TImage();
Int32 nImageId = 0;
if(pImage->Create(pPanel))
{
TRectangle obBtnRec(0,0,0,0);
nImageId=pImage->GetId();
obBtnRec.SetRect(nX, nY, nWidth, nHeight);
pImage->SetBounds(&obBtnRec);
pImage->SetBitmap(pBmp);
pImage->SetEnabled(TRUE);
}
return nImageId;
}