How can I minimize my application by clicking on some button in the application, on Windows Mobile and Symbian platforms, under Qt?
相关问题
- QML: Cannot read property 'xxx' of undefin
- QTextEdit.find() doesn't work in Python
- QT Layouts, how to make widgets in horizontal layo
- QT Layouts, how to make widgets in horizontal layo
- QT GUI freezes even though Im running in separate
相关文章
- ubuntu20.4中c#通过c++库调用python脚本
- Qt槽函数自动执行多遍
- Is there a non-java, cross platform way to launch
- How to get a settings storage path in a cross-plat
- How to set the font size of the label on pushbutto
- Why doesn't valgrind detect a memory leak in m
- QTreeView remove decoration/expand button for all
- qt界面拥挤
For a QWidget which is a Window you can use the
ShowMinimized
function.Probably QWidget::setWindowState will suit you and the state for minimized is
Qt::WindowMinimized
.. So if your base widget is aQMainWindow
, you can use this function on it.It will work for desktop applications.. Should be similar for Mobile apps though..
Hope it helps...