Public Member Functions | |
| BottomHtmlWindow (LauncherFrame parent) | |
| override void | OnLinkClicked (wx.Html.HtmlLinkInfo link) |
Definition at line 84 of file Launcher.cs.
| 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 }
| 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 }
(c) 2003-2010 the wx.NET project