Thread [Wx] Excel-ähnliche Tabelle erstellen?
(17 answers)
Opened by pktm at 2011-03-28 18:53
Streng genommen ja. Das Widget für Excel-artige Tabellen nennt sich Wx::Grid.
Hier Code: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 #!perl package MyApp; use strict; use warnings; use Wx qw/:everything/; use Wx::Grid; use base qw(Wx::App); # von Wx::App ableiten sub OnInit { my $app = shift ; my $frame = Wx::Frame->new( undef, # kein Eltern-Fenster -1, # Fenter id 'Wx::Grid', # Titel [-1, -1], # Position x/y [640, 480] # Größe x/y ); my $grid = Wx::Grid->new($frame); $grid->CreateGrid( 5, # int numRows, 5, # int numCols, wxGridSelectCells # wxGridSelectionModes selmode = wxGridSelectCells ); $app->SetTopWindow($frame); # Fenster als oberstes bestimmen $frame->Show(1); # Fenster zeichnen 1; } 1; # /MyApp package main; use strict; use warnings; MyApp->new->MainLoop(); exit(0); http://www.intergastro-service.de (mein erstes CMS :) )
View full thread [Wx] Excel-ähnliche Tabelle erstellen? |