当前位置:网站首页>Duilib display memory picture

Duilib display memory picture

2022-06-24 07:48:00 Fog dispels eyesight

CControlUI* pCtrl=NULL;
CDuiString sCtrlKey = _T(“your_key_name”);
HBITMAP hBmp; // GDI Method to get the picture handle

if(pCtrl)
{	
	m_PaintManager.RemoveImage(sCtrlKey);	
	m_PaintManager.AddImage(sCtrlKey, hBmp, w, h, false);		
	pCtrl->SetBkImage(sCtrlKey);
}

Reference resources :https://blog.csdn.net/taquguodedifang/article/details/72809215

原网站

版权声明
本文为[Fog dispels eyesight]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/175/202206240252197876.html