frankliuao
frankliuao

Reputation: 420

Qt Designer UI template files

I recently started playing with Qt and PyQt, then I learned about Qt Designer and the .ui files they generate in xml format. I was wondering if there is a resource website for downloading the template .ui files? That would make life much easier to start with.

Upvotes: 1

Views: 11188

Answers (2)

There's no point to template .ui files because the only truly reusable element in them is styling. Layouts etc. are very application-specific. Certainly Qt style .css/.qss templates make sense. If any exist, you will find them with Google.

Upvotes: 0

Kirill Chernikov
Kirill Chernikov

Reputation: 1420

As i know, it's not such practice in Qt to make template .ui files and then reuse them. If you want to reuse some ready UI components you can make Qt Designer Plugin and then use it. See documentation: Adding Qt Designer Plugins

Upvotes: 0

Related Questions