Hi,
how can i set stylesheet to windows applications (vb.net)
Thanks in Advance
Printable View
Hi,
how can i set stylesheet to windows applications (vb.net)
Thanks in Advance
Just like a normal HTML document. Put this is the head blockWhere 'styles.css' is the location of your stylesheet.Code:<link rel="stylesheet" type="text/css" href="styles.css">
Most times i just drag the CSS file from the Solution Explorer and drop it on the WebForm. It does the code automatically then. ;)