在Duilib程序中,在xml中如果有加载资源文件(比如png背景图片),如果调试程序是出现黑屏,加载资源失败,但是单独执行exe文件是可以的,这是很可能是因为资源文件的位置放的不对,你可能释放到xml相同的目录,但是程序实际上加载资源文件实在项目的当前目录,把资源文件放到项目的当前目录就是可以的,这样虽然是可以的,但是感觉不太符合要求,如果需要在指定的位置加载资源文件,可以使用以下代码来设置:
LRESULT CSetup::OnCreate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
g_PM = &m_PaintManager;
LONG styleValue = ::GetWindowLong(*this, GWL_STYLE);
styleValue &= ~WS_CAPTION;
::SetWindowLong(*this, GWL_STYLE, styleValue | WS_CLIPSIBLINGS | WS_CLIPCHILDREN);
m_PaintManager.Init(m_hWnd);
CDialogBuilder builder;
CDuiString str = CPaintManagerUI::GetInstancePath();
m_PaintManager.SetResourcePath(str + _T("..\\_bin\\"));
CControlUI* pRoot = builder.Create(_T("..//_bin//XMP.xml"), (UINT)0, this, &m_PaintManager);
ASSERT(pRoot && "Failed to parse XML");
m_PaintManager.AttachDialog(pRoot);
m_PaintManager.AddNotifier(this);//注册
return 0;
}
这样项目就会在指定的位置加载图片了
来源:CSDN
作者:a1317338022
链接:https://blog.csdn.net/a1317338022/article/details/55099071