我可以从 QLabel 读取值吗

Can i read value from QLabel(我可以从 QLabel 读取值吗)
本文介绍了我可以从 QLabel 读取值吗的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我现在如何设置值(数字),但我可以在某个变量中读取该标签.如果无法阅读,我可以在哪些类似的小部件中放置价值并阅读它.任何帮助都将是 halpful 或有人有其他想法.也许像液晶数字,旋转框

I now how to set value(number) but can i read that label in some variable. if can't read, in which similar widgets can i put value and read it. Any help would be halpful or someone has an other idea. Maybe like LCD number, spin box

推荐答案

这样吗?

QString text = someLabel->text();

这篇关于我可以从 QLabel 读取值吗的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to enforce move semantics when a vector grows?(当向量增长时如何强制执行移动语义?)
Typedef function pointer?(typedef函数指针?)
Reflection and refraction impossible without recursive ray tracing?(没有递归光线追踪就不可能实现反射和折射?)
Is delete[] equal to delete?(delete[] 是否等于删除?)
Why is unsigned integer overflow defined behavior but signed integer overflow isn#39;t?(为什么定义了无符号整数溢出行为但没有定义有符号整数溢出?)
Unions and type-punning(工会和类型双关语)