Reputation: 420
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
Reputation: 98525
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
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