Hello,
How i can add QRadioButtons in a QFrame on runtime?
Thanks.
|
|
Add the widget to the appropriate place by calling the
Just make sure you do this in your main (UI) thread. |
||
|
|
|
|
you can add a QRadioButtons on runtime normally in the same way you do before runtime. you create the QRadioButton dynamically and call the addWidget method of QFrame layout. if you are not ableto do it, post the code and let me show you. mainwindow.h
mainwindow.cpp
main.cpp
in this code the radioButton get created in the runtime (in the slot function radioAdd). and in your case, instead of adding QRadioButton into the wigdet layout you add them into QFrame. |
|||
|
|