私は自分のウェブサイトを表示するだけの非常に単純なプログラムを作成しようとしています。したがって、基本的にプログラムはウェブサイトの iframe のようなものになります。これを達成するための最良の方法は何ですか?
質問する
714 次
1 に答える
2
iFrame はブラウザ テクノロジであるため、使用できません。次のように Web ブラウザーを使用する必要があります。
using System;
using System.Windows.Forms;
namespace WindowsFormsApplication10
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// When the form loads, open this web page.
webBrowser1.Navigate("http://www.dotnetperls.com/");
}
private void webBrowser1_Navigating(object sender, WebBrowserNavigatingEventArgs e)
{
// While the page has not yet loaded, set the text.
this.Text = "Navigating";
}
private void webBrowser1_DocumentCompleted(object sender,
WebBrowserDocumentCompletedEventArgs e)
{
// Better use the e parameter to get the url.
// ... This makes the method more generic and reusable.
this.Text = e.Url.ToString() + " loaded";
}
}
}
参考文献 http://www.dotnetperls.com/webbrowser
注: 例は C# です。
C++については、これをチェックしてくださいC++プロジェクトの組み込みブラウザは何ですか?
于 2012-09-13T17:47:24.470 に答える