此错误消息来自使用 marmalade + c++ 设置本机 ui 移动应用程序的教程。
错误信息:
Message: Failed to open file iwui_style/iwui_style.group
这是主文件:
#include "IwNUI.h"
using namespace IwNUI;
int main()
{
CAppPtr app = CreateApp();
CWindowPtr window = CreateWindow();
app->AddWindow(window);
CViewPtr view = CreateView("canvas");
CButtonPtr button1 = CreateButton(CAttributes()
.Set("name", "Button1")
.Set("caption", "Hello World!")
.Set("x1", "10")
.Set("y1", "10"));
view->AddChild(button1);
window->SetChild(view);
app->ShowWindow(window);
app->Run();
return 0;
}
和 mkb 文件:
files
{
(source)
app.cpp
}
subprojects
{
s3e
IwNUI
}
defines
{
IW_USE_LEGACY_MODULES
}
任何帮助都会很棒。谢谢!