онклик ругается (
- Code:
$this->comboBox = new QComboBox;
- Code:
$button = new QPushButton; $button->text = 'Открыть'; $button->onClicked = function() { pre($this->comboBox->currentIndex); };
Moderator: ArtMares
$this->comboBox = new QComboBox;
$button = new QPushButton; $button->text = 'Открыть'; $button->onClicked = function() { pre($this->comboBox->currentIndex); };
$this->comboBox = new QComboBox; /** Тут заносим в него пункты */ $this->combobox->onCurrentIndexChanged = function($sender) { pre($sender->currentText) }