[Monodevelop-patches-list] r401 - samples/HtmlControl
commit-watcher at sevenl.net
commit-watcher at sevenl.net
Tue Jan 6 22:08:57 EST 2004
Author: jluke
Date: 2004-01-06 22:08:56 -0500 (Tue, 06 Jan 2004)
New Revision: 401
Modified:
samples/HtmlControl/Test.cs
Log:
update test
Modified: samples/HtmlControl/Test.cs
===================================================================
--- samples/HtmlControl/Test.cs 2004-01-07 03:06:02 UTC (rev 400)
+++ samples/HtmlControl/Test.cs 2004-01-07 03:08:56 UTC (rev 401)
@@ -12,13 +12,13 @@
win.DeleteEvent += new DeleteEventHandler (OnWinDelete);
HtmlControl html = new HtmlControl ();
- html.Show ();
- win.Add (html);
- win.ShowAll ();
// this loads html from a string
html.Html = "<html><body>testing</body></html>";
// this loads html from a Url
//html.Url = "http://localhost";
+ win.Add (html.Control);
+ win.ShowAll ();
+ html.DelayedInitialize ();
Application.Run ();
}
More information about the Monodevelop-patches-list
mailing list