如何在最大化状态下在Windows中启动我的cinder应用程序?我看到一些关于ShowWindow SW_MAXIMIZED的文档,但是没有看到cinder中是如何支持的,有人可以提供任何帮助吗?
答案 0 :(得分:3)
这适用于OS X,我也假设在Windows中以全屏状态启动应用程序,如果这是您正在寻找的内容:
class MyApp : public ci::app::AppNative
{
public:
void prepareSettings( Settings *settings )
{
settings->setFullScreen();
}
...
};
P.S。我在Cinder forums中看到的与Cinder相关的活动多于StackOverflow:)