I am working in c++ Qt Creator. I have a form with labes and line edits. I would like to set as defalut in each line edit a text. It would be more efficient than writing the same stuff each time I run the application. Can you please tell me how to do this?
|
Use
You can set it in the constructor or maybe set all those defaults in an |
||||
|
|
|
When you double click in the UI designer on the QTextEdit you can enter a default text which is set everytime your application is run. Alternate you can set the text using the ->setText(QString) function in the constructor of your window. |
|||
|
|
|
Qt has a concept of properties, and for each property, there's usually a getter and a setter, in your case "Text" (as also displayed in the designer) -> As a serious advice: Learn to use the excellent documentation. Nearly everything in QtCreator lets you open a context-sensitive help via F1. And read some introductions; |
|||
|
|
|
Read thorugh the documentation. hope this helps, tell me if you need aything more |
||||