[SOLVED] QML and SelectionDialog
-
Is there any way to use SelectionDialog in .qml?
Some documents say Yes, some say No:
http://archive.is/7gepeI found SelectionDialog.qml on:
https://github.com/M4rtinK/modrana/blob/master/modules/gui_modules/gui_qml/ic/qtc/SelectionDialog.qml -
Hi Lepa Brena,
I can't find 'SelectionDialog' in official documentation for Qt 5.2. Could you explain what you need? If you want select some file(s) you can use "FileDialog":http://qt-project.org/doc/qt-5/qml-qtquick-dialogs-filedialog.html
For more information about dialogs you can find "here":http://qt-project.org/doc/qt-5/qtquick-dialogs-qmlmodule.html. -
Actually I want it to use as a Combobox, because I have some problems with Combobox (don't like it because cannot change style of dropdown).
At the end, I'm going to create some custom comobox...Thank you both.