문제

I am making a calculator in qt. I have a plain text edit box. when I input numbers in it, I want it to print from the right(like any other calculator).

also, I want to disable input of anything except numbers. (little new in qt)

도움이 되었습니까?

해결책

You just need to use setAlignment(Qt::AlignRight) of your QLineEdit and

QLineEdit::setValidator(), for example:

myLineEdit->setValidator( new QIntValidator(0, 100, this) );

Take alook at this one as well: Set QLineEdit to accept only numbers

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top