基本信息
源码名称:WebKit开发实战(一):在WinForm中使用WebKit控件
源码大小:12.87M
文件格式:.zip
开发语言:C#
更新时间:2019-02-21
   源码介绍

WebKit开发实战(一):在WPF中使用WebKit控件


private void webKitBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
        {
            string domText = webKitBrowser1.DocumentText;
            richTextBox1.Text = domText;
        }