thanks guys for reply,
but i still have no luck, although i tried more windows flags
i'm targeting C7 symbian device and i created new qmainwindow based app
and write this to remove the title and command bar
mainwindow
::mainwindow(QWidget *parent
){
setWindowFlags((Qt::FramelessWindowHint);
setWindowState(Qt::WindowMaximized);
// setWindowFlags(windowFlags() | Qt::WindowCloseButtonHint | //Qt::CustomizeWindowHint);
setWindowState(Qt::WindowMaximized);
}
mainwindow::mainwindow(QWidget *parent)
: QMainWindow(parent)
{
setWindowFlags((Qt::FramelessWindowHint);
setWindowState(Qt::WindowMaximized);
// setWindowFlags(windowFlags() | Qt::WindowCloseButtonHint | //Qt::CustomizeWindowHint);
setWindowState(Qt::WindowMaximized);
}
To copy to clipboard, switch view to plain text mode
but that didn't solve
Bookmarks