以下成员源于类 QDoubleSpinBox 已过时。 提供它们是为使旧源代码能继续工作。强烈建议不要在新代码中使用它们。
								
(obsolete)
								
								void
							 | 
							valueChanged (const QString & text ) | 
[signal]
						
						
							void
						
						QDoubleSpinBox::
						
							valueChanged
						
						(const
						
							
								QString
							
						
						&
						
							text
						
						)
						
					此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
这是重载函数。
使用 textChanged ( QString ) instead
The new value is passed in text with prefix () 和 suffix ().
注意: 信号 valueChanged 在此类中被重载。通过使用函数指针句法连接到此信号,Qt 提供用于获得如此范例展示的函数指针的方便帮助程序:
connect(doubleSpinBox, QOverload<const QString &>::of(&QDoubleSpinBox::valueChanged), [=](const QString &text){ /* ... */ });