博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c#用webkit内核支持html5
阅读量:6586 次
发布时间:2019-06-24

本文共 429 字,大约阅读时间需要 1 分钟。

【实例简介】经过测试可用

【实例截图】

【核心代码】

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using
System;
using
System.Windows.Forms;
 
namespace
WindowsFormsApplication1
{
    
public
partial
class
Form1 : Form
    
{
        
public
Form1()
        
{
            
InitializeComponent();
        
}
 
        
private
void
button1_Click(
object
sender, EventArgs e)
        
{
            
webKitBrowser1.Navigate(
""
);
        
}
 
        
private
void
button2_Click(
object
sender, EventArgs e)
        
{
            
webKitBrowser1.Navigate(
""
);
        
}
    
}
}

 

转载地址:http://cjhno.baihongyu.com/

你可能感兴趣的文章
CentOS6.7安装Python3.4
查看>>
【MVC】AJAX+PartialView实现商城首页的楼层加载
查看>>
如何设置dedecms自定义表单必填项?
查看>>
使用JavaScript在Canvas上画出一片星空
查看>>
WorkerMan 入门学习之(三)基础教程-Timer类的使用
查看>>
第 101 章 Munin
查看>>
记一次远程协助的排错案例
查看>>
你不可不知的HTML优化技巧
查看>>
15.6. Plugin & Hook 设计与实现
查看>>
图表(Chart & Graph)你真的用对了吗?
查看>>
python的自省基础
查看>>
康威定律-软件之道:软件开发争议问题剖析
查看>>
似然估计中为什么要取对数以GMM为例
查看>>
wcf系列5天速成——第一天 binding的使用(1)
查看>>
PlatformTransactionManager
查看>>
C#将dll打包到程序中
查看>>
在SQL Server中将数据导出为XML和Json
查看>>
多种问题袭来:崩溃在边缘的“直播赚钱路”
查看>>
ehcache monitor启动错误UnknownHostException
查看>>
nginx+ffmpeg搭建rtmp转播rtsp流的flash服务器
查看>>