Displaying 1 result from an estimated 1 matches for "fill_tabbook".
2004 Oct 21
0
Re: wxRuby: How to add a scrollbar to a Wx::Notebook tab
...< Wx::App
>
> def on_init
> frame = Wx::Frame.new( nil, -1, ''Matices in tabs'' )
> frame.set_client_size( Wx::Size.new( 400, 120 ) )
> sizer = Wx::BoxSizer.new( Wx::VERTICAL )
>
> notebook = Wx::Notebook.new( frame, -1 )
>
> fill_tabbook( notebook )
>
> frame.show
> end
>
> def fill_tabbook( notebook )
> @sl = [ { :header => "Header 1",
> :list =>[ ["CB1", "Additional text1 "],
> ["CB2", "ding"],
>...