]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/data/widgetTest.htm
Merged wxPython 2.4.x to the 2.5 branch (Finally!!!)
[wxWidgets.git] / wxPython / demo / data / widgetTest.htm
index 22d6398914c673c4aa6390da5158a4f863d84176..c88f019b7f5d359e555a35436fdf9903dcf256ce 100644 (file)
@@ -4,24 +4,30 @@
 </head>
 <body bgcolor="#00CCFF">
 <h2>Mixing wxPython and wxHTML</h2>
-The widgets on this page were created dynamically on the fly by a custom
-wxTagHandler found in wxPython.lib.wxpTag.  You can look at the sources
-and doc-string <a href="../../lib/wxpTag.py">here</a>.
+
+The widgets on this page were created dynamically on the fly by a
+custom wxTagHandler found in wxPython.lib.wxpTag.  You can look at the
+sources and doc-string <a href="../../lib/wxpTag.py">here</a>.
+
 <p>
 The button below is added to the page like this:
+
 <pre>
 &lt;center>&lt;wxp class="wxButton" width="50%">
     &lt;param name="label" value="It works!">
     &lt;param name="id"    value="wxID_OK">
 &lt;/wxp>&lt;/center>
 </pre>
+
 <hr>
+
 <center>
 <wxp class="wxButton" width="50%">
     <param name="label" value="It works!">
     <param name="id"    value="wxID_OK">
 </wxp>
 </center>
+
 <p>
 Notice that the <b>button click</b> event is actually caught by the panel
 that contains this window, which then logs it in the window below.