如何在项目文件夹中创建 QSS 文件?
在创建新文件的选项中,我没有这个扩展名。
如何将这种类型的文件添加到我的项目中?
At the option of creating new files, I do not have this extension.
How can I add this type of file to my project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Qt Creator 中:
style.qss
(也可以选择目录);In Qt Creator:
style.qss
(you may also choose the directory);只需使用记事本等文本编辑器创建它,并使用
.qss
扩展名保存即可。我建议将其添加到您的资源文件中。您可以使用以下示例代码加载它
Just create it with a text editor like a notepad and save it with the
.qss
extension. I suggest to add it in your resource file.You can load it using the following sample code
是的,Qt Creator(我假设这就是你正在使用的)在这方面有点缺乏。只需在文件系统上创建文件夹和文件即可。然后,在 Qt Creator 中,右键单击该项目并选择
添加现有文件...
Yeah, Qt Creator (I'm assuming that is what you are using) is a little lacking in this area. Just create the folder and file on your file system. Then, in Qt Creator, right click on the project and select
Add Existing Files...