Thread [Wx] EventHandler aktiv nur wenn PopUpMenü geöffnet ist
(10 answers)
Opened by XimPerl at 2011-12-16 02:41
Ah soweit hab ich es verstanden
Code (perl): (dl
)
$self->Connect(10101,10101, EVT_GRID_CELL_RIGHT_CLICK, \&showPopupMenu); Aber woher bekomme ich EVT_GRID_CELL_RIGHT_CLICK? per (use Wx::Grid) gehts nicht Code (perl): (dl
)
$self->Connect(10101,10101, Wx::Event::EVT_GRID_CELL_RIGHT_CLICK, \&showPopupMenu); und Code (perl): (dl
)
$self->Connect(10101,10101, Wx::Grid::EVT_GRID_CELL_RIGHT_CLICK, \&showPopupMenu); geht auch nicht oO Last edited: 2011-12-19 14:08:02 +0100 (CET) |