博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
QML用Qt.labs.settings实现保存用户设置
阅读量:6689 次
发布时间:2019-06-25

本文共 588 字,大约阅读时间需要 1 分钟。

举个简单的例子:

main.cpp中设置程序信息

QGuiApplication::setApplicationName("Gallery");QGuiApplication::setOrganizationName("QtProject");QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);

在需要保存设置的qml中:

...import Qt.labs.settings 1.0...{   ...    Settings {        id: settings        property string input: "Default"    }    TextInput{        width:200        height: 50        id: textInput        text: settings.input    }    Button{        anchors.top:textInput.bottom        text:"save"        onClicked: {            settings.input=textInput.text        }    }   ...}

程序关闭后,再次启动时信息还会在文本框内。

转载地址:http://rfkoo.baihongyu.com/

你可能感兴趣的文章
MAP-Diameter IWF Introduction
查看>>
MOS9.0源搭建安装
查看>>
j2ee-url-pattern
查看>>
集群之Mysql主从与环形详细配置步骤(4)(已重新整理)
查看>>
PHP提取身份证号码中的生日并验证是否成年的函数
查看>>
Apache mina 通信第二步发送消息 在线发送消息和离线接受消息
查看>>
Genesis-3D新手入门——8.天空盒
查看>>
char ch[3]中的ch在哪
查看>>
2014年度总结暨2015大致计划
查看>>
我的友情链接
查看>>
Hadoop学习--FileUtil工具类使用--day04
查看>>
spring整合squartz
查看>>
find—查找条件
查看>>
计算机无法访问,您可能没有权限使用网络资源的解决方法
查看>>
MVC中实现加载更多
查看>>
【Linux基础】第一周作业
查看>>
ld: cannot find -lrt 解决方法
查看>>
Android网络通信框架LiteHttp:简介和教程大纲
查看>>
Android平台播放语音时支持听筒、喇叭之间切换
查看>>
RPC的实现
查看>>