HTML Forms in Windows Forms Html Viewer (HTMLUI)

28 Apr 20211 minute to read

Forms are the containers for placing the elements in a HTML document. HTMLUI supports the usage of forms for developing advanced and decorative pages in the user’s application.

<html>

<body>

<form>

<input type = "text"/><br/>

<input type = "button"/><br/>

<input type = "checkbox" checked /><br/>

</form>

</body>

</html>

Loading the above HTML document into HTMLUI creates a Form with the three controls specified as shown below.

HTML-Forms_img1

HTMLUIForms sample

This sample illustrates the implementation of Forms by using HTMLUI.

HTML-Forms_img2