C#中的網頁瀏覽器外掛:AxWebBrowser ZT

asword發表於2007-03-05

最近在做一個程式中要求在WinForm中插一個瀏覽器的控制元件,在網上一找,找到了AxWebBrowser這個控制元件,它是一個COM的控制元件,所以先要往工具箱中新增這個控制元件,使得它能像其他視覺化控制元件一樣變得容易操作。新增完之後,你會在工具箱的“常規”箱中看到一個新增的控制元件,我們就能開始往WinForm中新增了!

[@more@]

最近在做一個程式中要求在WinForm中插一個瀏覽器的控制元件,在網上一找,找到了AxWebBrowser這個控制元件,它是一個COM的控制元件,所以先要往工具箱中新增這個控制元件,使得它能像其他視覺化控制元件一樣變得容易操作。新增完之後,你會在工具箱的“常規”箱中看到一個新增的控制元件,我們就能開始往WinForm中新增了!

一看這個控制元件的方法和屬性還是很多的,都是作為一個瀏覽器所應該有的,如GoBack(),GoFoward(),Stop(),Refresh(),Home()等等,可以看到在一般瀏覽器的頂端會有這些按鈕,我們只要再加個ToolBar,加上相應的按鈕,寫好程式,就可以實現這些功能了。

網上其實已經有很多用這個控制元件實現一個網頁瀏覽器的程式,我找了一個先貼在這裡:

×××××××××××××××××××××××××××××××××××××××××××××××××××××××××

透過轉換後元件來實現瀏覽器的一些基本功能:
瀏覽器的主要功能就是能夠到指定的地址瀏覽資訊,當然在具體的瀏覽中還有一些基本的功能,譬如:“前進”、“後退”、“停止”、“重新整理”、“主頁”等,這些功能都可以透過“AxWebBrowser”元件來實現。下面就來具體介紹:
< I > .瀏覽指定的地址:
在程式中,網址是填寫在元件“textbox1”中的,“瀏覽指定地址”功能是透過程式的按鈕“轉到”來實現的。下面是按鈕“轉到”按動後的程式程式碼:
private void button1_Click ( object sender , System.EventArgs e )
{
System.Object nullObject = 0 ;
string str = "" ;
System.Object nullObjStr = str ;
Cursor.Current = Cursors.WaitCursor ;
axWebBrowser1.Navigate ( textBox1.Text , ref nullObject , ref nullObjStr , ref nullObjStr , ref nullObjStr ) ;
Cursor.Current = Cursors.Default ;
}
< II > .瀏覽器的“前進”、“後退”、“停止”、“重新整理”、“主頁”功能:
在“AxWebBrowser”元件中對這些功能都有一個具體的方法來與之對應,具體如下面程式碼:
private void toolBar1_ButtonClick ( object sender , ToolBarButtonClickEventArgs e )
{
//瀏覽器中的“後退”
if ( e.Button == tb1 )
{
axWebBrowser1.GoBack ( ) ;
}
//瀏覽器中的“前進”
if ( e.Button == tb2 )
{
axWebBrowser1.GoForward ( ) ;
}
//瀏覽器中的“停止”
if ( e.Button == tb3 )
{
axWebBrowser1.Stop ( ) ;
}
//瀏覽器中的“重新整理”
if ( e.Button == tb4 )
{
axWebBrowser1.Refresh ( ) ;
}
//瀏覽器中的“主頁”
if ( e.Button == tb5 )
{
axWebBrowser1.GoHome ( ) ;
}

}
< III > .當然掌握了上面的知識,你就可以用Visual C#做出一個基本的瀏覽器了,但下面這些也是不可缺少的,因為下面這些程式碼將使得你做的瀏覽器更專業。下面程式碼的作用是使得瀏覽介面隨著窗體的變化而變化,按鈕和文字框也要隨著窗體的變化而變化。
button1.Anchor = ( AnchorStyles.Top | AnchorStyles.Right ) ;
//定位“轉到”按鈕元件與窗體的上、右邊框保持一致
textBox1.Anchor = ( ( AnchorStyles.Top | AnchorStyles.Left )
| AnchorStyles.Right ) ;
//定位地址文字框元件與窗體的上、左、右邊框保持一致
axWebBrowser1.Anchor = ( ( ( AnchorStyles.Top | AnchorStyles.Bottom )
| AnchorStyles.Left )
| AnchorStyles.Right ) ;
//定位瀏覽器元件與窗體的上、下、左、右邊框保持一致
源程式程式碼(brower.cs)
瞭解有了上面的這些,就可以比較容易編寫一個屬於自己的瀏覽器了,下面是用Visual C#做的瀏覽器源程式程式碼,他具備了IE瀏覽器的一些常用的功能。
using System ;
using System.Drawing ;
using System.Collections ;
using System.ComponentModel ;
using System.Windows.Forms ;
using System.Data ;
using AxSHDocVw ;
public class Form1 : Form
{
private ToolBar toolBar1 ;
private ToolBarButton tb1 ;
private ToolBarButton tb2 ;
private ToolBarButton tb3 ;
private ToolBarButton tb4 ;
private ToolBarButton tb5 ;
private Label label1 ;
private TextBox textBox1 ;
private Button button1 ;
private AxWebBrowser axWebBrowser1 ;
private System.ComponentModel.Container components = null ;
public Form1 ( )
{
InitializeComponent ( ) ;
}
//清除程式中使用過的資源
protected override void Dispose ( bool disposing )
{
if ( disposing )
{
if ( components != null )
{
components.Dispose ( ) ;
}
}
base.Dispose ( disposing ) ;
}
//初始化窗體中的各個元件
private void InitializeComponent ( )
{
tb1 = new ToolBarButton ( ) ;
tb2 = new ToolBarButton ( ) ;
tb3 = new ToolBarButton ( ) ;
toolBar1 = new ToolBar ( ) ;
tb4 = new ToolBarButton ( ) ;
tb5 = new ToolBarButton ( ) ;
button1 = new Button ( ) ;
textBox1 = new TextBox ( ) ;
axWebBrowser1 = new AxWebBrowser ( ) ;
label1 = new Label ( ) ;
( ( System.ComponentModel.ISupportInitialize ) ( this.axWebBrowser1 ) ).BeginInit ( ) ;
this.SuspendLayout ( ) ;

tb1.Text = "後退" ;
tb2.Text = "前進" ;
tb3.Text = "停止" ;
tb4.Text = "重新整理" ;
tb5.Text = "主頁" ;

toolBar1.Appearance = ToolBarAppearance.Flat ;
toolBar1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle ;
//在工具欄中加入按鈕
toolBar1.Buttons.Add ( tb1 ) ;
toolBar1.Buttons.Add ( tb2 ) ;
toolBar1.Buttons.Add ( tb3 ) ;
toolBar1.Buttons.Add ( tb4 ) ;
toolBar1.Buttons.Add ( tb5 ) ;
toolBar1.DropDownArrows = true ;
toolBar1.Name = "toolBar1" ;
toolBar1.ShowToolTips = true ;
toolBar1.Size = new System.Drawing.Size ( 612 , 39 ) ;
toolBar1.TabIndex = 0 ;
toolBar1.ButtonClick += new ToolBarButtonClickEventHandler ( toolBar1_ButtonClick ) ;
//定位“轉到”按鈕元件與窗體的上、右邊框保持一致
button1.Anchor = ( AnchorStyles.Top | AnchorStyles.Right ) ;
button1.DialogResult = DialogResult.OK ;
button1.Location = new System.Drawing.Point ( 544 , 45 ) ;
button1.Name = "button1" ;
button1.Size = new System.Drawing.Size ( 40 , 23 ) ;
button1.TabIndex = 3 ;
button1.Text = "轉到" ;
button1.Click += new System.EventHandler ( button1_Click ) ;
//定位地址文字框元件與窗體的上、左、右邊框保持一致
textBox1.Anchor = ( ( AnchorStyles.Top | AnchorStyles.Left )
| AnchorStyles.Right ) ;
textBox1.Location = new System.Drawing.Point ( 64 , 47 ) ;
textBox1.Name = "textBox1" ;
textBox1.Size = new System.Drawing.Size ( 464 , 21 ) ;
textBox1.TabIndex = 2 ;
textBox1.Text = "" ;
//定位瀏覽器元件與窗體的上、下、左、右邊框保持一致
axWebBrowser1.Anchor = ( ( ( AnchorStyles.Top | AnchorStyles.Bottom )
| AnchorStyles.Left )
| AnchorStyles.Right ) ;
axWebBrowser1.Enabled = true ;
axWebBrowser1.Location = new System.Drawing.Point ( 0 , 72 ) ;
axWebBrowser1.Size = new System.Drawing.Size ( 608 , 358 ) ;
axWebBrowser1.TabIndex = 4 ;

label1.Location = new System.Drawing.Point ( 16 , 48 ) ;
label1.Name = "label1" ;
label1.Size = new System.Drawing.Size ( 48 , 16 ) ;
label1.TabIndex = 1 ;
label1.Text = "地址:" ;

this.AutoScaleBaseSize = new System.Drawing.Size ( 6 , 14 ) ;
this.ClientSize = new System.Drawing.Size ( 612 , 433 ) ;

this.Controls.Add ( axWebBrowser1 ) ;
this.Controls.Add ( button1 ) ;
this.Controls.Add ( textBox1 ) ;
this.Controls.Add ( label1 ) ;
this.Controls.Add ( toolBar1 ) ;
this.FormBorderStyle = FormBorderStyle.FixedSingle ;
this.Name = "Form1" ;
this.Text = "visual C#做瀏覽器" ;
( ( System.ComponentModel.ISupportInitialize ) ( this.axWebBrowser1 ) ).EndInit ( ) ;
this.ResumeLayout ( false ) ;

}
static void Main ( )
{
Application.Run ( new Form1 ( ) ) ;
}
//實現瀏覽器主要功能
private void toolBar1_ButtonClick ( object sender , ToolBarButtonClickEventArgs e )
{
//瀏覽器中的“後退”
if ( e.Button == tb1 )
{
axWebBrowser1.GoBack ( ) ;
}
//瀏覽器中的“前進”
if ( e.Button == tb2 )
{
axWebBrowser1.GoForward ( ) ;
}
//瀏覽器中的“停止”
if ( e.Button == tb3 )
{
axWebBrowser1.Stop ( ) ;
}
//瀏覽器中的“重新整理”
if ( e.Button == tb4 )
{
axWebBrowser1.Refresh ( ) ;
}
//瀏覽器中的“主頁”
if ( e.Button == tb5 )
{
axWebBrowser1.GoHome ( ) ;
}

}
//瀏覽指定的Web地址
private void button1_Click ( object sender , System.EventArgs e )
{
System.Object nullObject = 0 ;
string str = "" ;
System.Object nullObjStr = str ;
Cursor.Current = Cursors.WaitCursor ;
axWebBrowser1.Navigate ( textBox1.Text , ref nullObject , ref nullObjStr , ref nullObjStr , ref nullObjStr ) ;
Cursor.Current = Cursors.Default ;
}
}
總結
至此一個功能相對完備的“瀏覽器”就算完成了,其實用Visual C#做“瀏覽器”的過程,也就是Visual C#中使用COM元件的過程。掌握了COM元件在Visual C#使用方法,就可以利用Visual C#編寫出功能更強大,適應性更強的軟體來,但編寫的過程又十分的簡單。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/82387/viewspace-902848/,如需轉載,請註明出處,否則將追究法律責任。

相關文章