wx.SampleLauncher.BottomHtmlWindow Class Reference

List of all members.

Public Member Functions

 BottomHtmlWindow (LauncherFrame parent)
override void OnLinkClicked (wx.Html.HtmlLinkInfo link)


Detailed Description

Definition at line 84 of file Launcher.cs.


Constructor & Destructor Documentation

wx.SampleLauncher.BottomHtmlWindow.BottomHtmlWindow ( LauncherFrame  parent  ) 

Definition at line 88 of file Launcher.cs.

00089                         : base( parent, -1, wxDefaultPosition, new Size( 400, 80 ) )
00090                 {
00091                         this.parent = parent;
00092                         LoadPage( "../Samples/Launcher/launcherbottom.html" );
00093                 }


Member Function Documentation

override void wx.SampleLauncher.BottomHtmlWindow.OnLinkClicked ( wx.Html.HtmlLinkInfo  link  ) 

Definition at line 97 of file Launcher.cs.

00098                 {
00099                         if ( link.Href == "quit" )
00100                         {
00101                                 parent.Close();
00102                                 return;
00103                         }
00104                 }


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