基本信息
源码名称:美化winform窗体(WebBrowser+html)
源码大小:4.06M
文件格式:.rar
开发语言:C#
更新时间:2019-03-21
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 2 元 
   源码介绍

写入HTML来美化窗口


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace BackgroundT
{
    public partial class Form1 : Form
    {
        static string path = (System.Environment.CurrentDirectory).Replace(@"\", @"/"); //html 图片路径
        static string nameq = "1";
        string htmlname = @"<!DOCTYPE html>
<html lang='zh'>
<head>
	<meta charset = 'UTF-8' >

    <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'> 
	<meta name = 'viewport'content='width=device-width, initial-scale=1.0'>
	<link rel = 'stylesheet' type='text/css' href='"  path   @"/css/normalize.css' />
	<link rel = 'stylesheet' type='text/css' href='"  path   @"/css/htmleaf-demo.css'>
	<link rel = 'stylesheet' href='"   path   @"/css/style.css'>
</head>
<body>
	<canvas id ='c1'></canvas >
    <canvas id='c2'></canvas>
	<marquee behavior ='aaa' direction='aaa'>"   nameq   @"</marquee>
	<script src = '"   path   @"/js/index.js' ></script>
</body>
</html> ";

        public Form1()
        {
            InitializeComponent();

            WebBrowser webBrowser = new WebBrowser();
            webBrowser.Size = new Size(800, 450);

            webBrowser.ScriptErrorsSuppressed = true;
            webBrowser.ScriptErrorsSuppressed = true;
            webBrowser.IsWebBrowserContextMenuEnabled = false;
            webBrowser.AllowWebBrowserDrop = false;
            webBrowser.WebBrowserShortcutsEnabled = false;
            //webBrowser.Navigate(Application.StartupPath   "../index.html");
            webBrowser.DocumentText = htmlname;
            this.Controls.Add(webBrowser);
        }

        private void skinButton1_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}