MessageDialog force non-native
Unsolved
QML and Qt Quick
-
Hi,
is there a possibility to force a MessageDialog to use Qt's own implementation? I know that FileDialog has an option for that but I havent't found anything for MessageDialog.import QtQuick.Dialogs 1.3 MessageDialog { ... }
As I don't know a better solution for what I actually try to achieve (different post), I have been relying on the implementation structure of Qt - but that has stopped working, apparently because the MessageDialog seems to be native in Windows by now.
To be precise: I can't access the contentItem, thus also not its children, any more.
Thanks! -
You can construct your own dialog. Use
Popup
withColumn
combination, orWindow
, if you want to show dialog as separate window.