基本信息
源码名称:winform插件cefsharp65最新版完美demo,完美flash、html5、和调用摄像头支持,部署就能用
源码大小:59.76M
文件格式:.rar
开发语言:C#
更新时间:2020-01-04
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

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

本次赞助数额为: 2 元 
   源码介绍
注意,要求.net版本至少在4.5.2,且是64位的解决方案,解决方案生成平台选anycpu是不行的,支持32位的我后续可能会上传;
该版本为cefsharp65,目前为止最新的版本,已集成好flash支持和支持摄像头调用,希望对你有用。ps(开发工具为vs2012)


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;
using cef;
using CefSharp;
using CefSharp.WinForms;

namespace CefSharpDemo
{

    public partial class Form1 : Form
    {
        private ChromiumWebBrowser CWebBrowser;
        public Form1()
        {
            InitializeComponent();
            CefExample.Init();//初始化内核
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            CWebBrowser = new ChromiumWebBrowser();
            this.Controls.Add(CWebBrowser);
            CWebBrowser.Dock = DockStyle.Fill;
            CWebBrowser.Load("http://ssfw.njfy.gov.cn/ssfwzx/ext/flash/flash.jsp");
        }
    }
}