gpt4 book ai didi

c++ - QSpinBox 千位分隔符

转载 作者:太空狗 更新时间:2023-10-29 20:45:58 25 4
gpt4 key购买 nike

使用 QSpinBox 是否可以在用户输入数字时显示数字的千位分隔符像 10,000哪种方法最好?

最佳答案

我知道这已经晚了,但这可能会帮助其他人。我用它来更新千位分隔符

ui->doubleSpinBox->setGroupSeparatorShown(true);

以ui的形式设置属性

在我的 QDialog 表单中,我用它来更新带有千位分隔符的金额,

void DialogCashPayment::on_doubleSpinBox_valueChanged(double arg1){
ui->doubleSpinBox->setValue(arg1);
}

编辑:

Found a bug when amount is 10k above, the cursor position is changed. i don't know how to fix this yet. Maybe someone could fix this.

关于c++ - QSpinBox 千位分隔符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9274884/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com