PodMaster's page
From WxPerl wiki
- The Third rule of perl club is a statement of fact: pod is sexy.
My name is not important. Call me podmaster. Don't contact me ;)
my $Fr = new Wx::Frame( undef, -1, "caption", [ 10 , 10], # location [ 100 , 100], # size # as perl boo_radley's instruction # this is how you create a frame which CANNOT BE RESIZED wxSIMPLE_BORDER # | wxTHICK_FRAME # allows for resizability -- i don't want taht | wxSYSTEM_MENU | wxCAPTION | wxSYSTEM_MENU | wxMINIMIZE_BOX | wxCLIP_CHILDREN, # removes flicker (windows only) ); # don't add wxMAXIMIZE_BOX or wxRESIZE_BORDER # wxMAXIMIZE ~ will maximize your window, so you wanna avoid it ;)
Heey, look at
