miniblink载入html,winform使用miniblink展示html(全屏)
【實(shí)例簡介】使用miniblink 展示html的例子,miniblink基于chromium的瀏覽器控件
【實(shí)例截圖】
點(diǎn)擊下圖中的百度,即可 實(shí)現(xiàn)全屏訪問 百度網(wǎng)頁 ,如下圖:
其實(shí)是winform嵌入的這個(gè)網(wǎng)頁,打開即是 全屏效果
【核心代碼】
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using Kyozy.MiniblinkNet;
namespace ShowPage
{
public partial class Index : Form
{
private WebView m_wke;
private string path = "";
public Index()
{
m_wke = new WebView();
InitializeComponent();
try
{
string config = ReadTxt(System.AppDomain.CurrentDomain.BaseDirectory "html\\config.txt");
this.StartPosition = FormStartPosition.Manual;
this.FormBorderStyle = FormBorderStyle.None;
this.Location = new Point(Convert.ToInt32(config.Split('|')[0]), Convert.ToInt32(config.Split('|')[1]));
this.Size = new System.Drawing.Size(Convert.ToInt32(config.Split('|')[2]), Convert.ToInt32(config.Split('|')[3]));
path = System.AppDomain.CurrentDomain.BaseDirectory "html\\" config.Split('|')[4] "\\" config.Split('|')[5] ".html";
}
catch { }
}
///
/// 讀取txt文件
///
///
///
public string ReadTxt(string path)
{
try
{
if (File.Exists(path))
{
StringBuilder sb = new StringBuilder();
StreamReader sr = new StreamReader(path, Encoding.Default);
String line;
while ((line = sr.ReadLine()) != null)
{
sb.Append(line.ToString());
}
sr.Dispose();
return sb.ToString();
}
else { return ""; }
}
catch { return ""; }
}
private void Index_Load(object sender, EventArgs e)
{
if (!m_wke.Bind(this)) { return; }
m_wke.NavigationToNewWindowEnable = false;
m_wke.CookieEnabled = false;
JsValue.BindFunction("FormClose", new wkeJsNativeFunction(formClose), 0);
JsValue.BindFunction("FormReload", new wkeJsNativeFunction(wkeReload), 0);
m_wke.Load(path);
}
long formClose(IntPtr es, IntPtr param)
{
System.Environment.Exit(0);
return JsValue.UndefinedValue();
}
long wkeReload(IntPtr es, IntPtr param)
{
m_wke.Reload();
return JsValue.UndefinedValue();
}
}
}
總結(jié)
以上是生活随笔為你收集整理的miniblink载入html,winform使用miniblink展示html(全屏)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: /usr/include/c++/6/c
- 下一篇: CSDN-markdown编辑器使用方法