如何在项目文件夹中创建 QSS 文件?

发布于 2024-12-14 06:45:36 字数 54 浏览 2 评论 0原文

在创建新文件的选项中,我没有这个扩展名。

如何将这种类型的文件添加到我的项目中?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

风吹过旳痕迹 2024-12-21 06:45:36

在 Qt Creator 中:

  1. Ctrl+N
  2. ->一般的;
  3. ->选择;
  4. 名称中写入style.qss(也可以选择目录);
  5. 添加到项目或SVN。

In Qt Creator:

  1. Ctrl+N;
  2. -> General;
  3. -> Choose;
  4. In name, write style.qss (you may also choose the directory);
  5. Add to project, or SVN.
小苏打饼 2024-12-21 06:45:36

只需使用记事本等文本编辑器创建它,并使用 .qss 扩展名保存即可。我建议将其添加到您的资源文件中。

您可以使用以下示例代码加载它

QFile file(":/qss/style.qss");
if(file.open(QFile::ReadOnly)) {
   QString StyleSheet = QLatin1String(file.readAll());
   qApp->setStyleSheet(StyleSheet);
}

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

QFile file(":/qss/style.qss");
if(file.open(QFile::ReadOnly)) {
   QString StyleSheet = QLatin1String(file.readAll());
   qApp->setStyleSheet(StyleSheet);
}
祁梦 2024-12-21 06:45:36

是的,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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文