wx.SampleLauncher.LauncherFrame Class Reference

List of all members.

Public Member Functions

 LauncherFrame (string title, Point pos, Size size)


Detailed Description

Definition at line 23 of file Launcher.cs.


Constructor & Destructor Documentation

wx.SampleLauncher.LauncherFrame.LauncherFrame ( string  title,
Point  pos,
Size  size 
)

Definition at line 31 of file Launcher.cs.

00032                         : base(title, wxDefaultPosition, size)
00033                 {
00034                         Icon = new wx.Icon( "../Samples/Launcher/mondrian.png" );
00035 
00036                         CreateStatusBar( 1 );
00037                         StatusText = "Welcome...";      
00038                         
00039                         topHtmlWindow = new TopHtmlWindow( this );
00040                         middleHtmlWindow = new MiddleHtmlWindow( this );
00041                         bottomHtmlWindow = new BottomHtmlWindow( this );
00042                         
00043                         BoxSizer bs = new BoxSizer( Orientation.wxVERTICAL );
00044                         
00045                         bs.Add( topHtmlWindow, 0, wx.SizerFlag.wxGROW );
00046             bs.Add(middleHtmlWindow, 1, SizerFlag.wxGROW);
00047             bs.Add(bottomHtmlWindow, 0, SizerFlag.wxGROW);
00048                         
00049                         Sizer = bs;
00050                         
00051                         CheckEnvironment();
00052                 }


Manual of the wx.NET   (c) 2003-2010 the wx.NET project