Wx::AcceleratorTable

From WxPerl wiki

Revision as of 12:25, 26 June 2009 by Admin (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Wx::AcceleratorTable

Example


my $AccTable = new Wx::AcceleratorTable(
	 [	wxACCEL_CTRL,
		  'C',  ### NEEDS TO BE CAPITAL 
		  123,
	 ],
	 [	wxACCEL_ALT, 'D', 321, ],
	 new Wx::AcceleratorEntry( wxACCEL_ALT, 'D', 321 ),
	 )
);

$someFrame->SetAcceleratorTable( $AccTable );

Google AdSense