• 大小: 184.97 KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2024-09-17
  • 语言: C#
  • 标签: C#  浏览器  源代码  

资源简介

这是用C#编写的IE浏览器,功能虽然不是很强大,但是很值得学习。

资源截图

代码片段和文件信息

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;
namespace MyWebIE
{
    public partial class frmIE : Form
    {
        //每页标题显示字符数
        private int title_COUNT = 8;
        public frmIE()
        {
            InitializeComponent();
        }

        #region 工具栏
        /// 
        /// 后退按钮
        /// 

        /// 
        /// 
        private void btngoback_Click(object sender EventArgs e)
        {
            getCurrentBrowser().GoBack();
            setStatusButton();
        }
        /// 
        /// 前进按钮
        /// 

        /// 
        /// 
        private void btnforword_Click(object sender EventArgs e)
        {
            getCurrentBrowser().GoForward();
            setStatusButton();
        }
        /// 
        /// 停止按钮
        /// 

        /// 
        /// 
        private void btnStop_Click(object sender EventArgs e)
        {
            getCurrentBrowser().Stop();
        }
        /// 
        /// 刷新按钮
        /// 

        /// 
        /// 
        private void btnrefresh_Click(object sender EventArgs e)
        {
            getCurrentBrowser().Refresh();
        }
        /// 
        /// 主页按钮
        /// 

        /// 
        /// 
        private void btnhome_Click(object sender EventArgs e)
        {
            getCurrentBrowser().GoHome();
        }
        /// 
        /// 搜索按钮
        /// 

        /// 
        /// 
        private void btnsearch_Click(object sender EventArgs e)
        {
            getCurrentBrowser().GoSearch();
        }
        /// 
        /// 打印按钮
        /// 

        /// 
        /// 
        private void btnprint_Click(object sender EventArgs e)
        {
            getCurrentBrowser().ShowPrintDialog();
        }
        /// 
        /// 新建按钮
        /// 

        /// 
        /// 
        private void btnNew_Click(object sender EventArgs e)
        {
            newPage();
        }
        /// 
        /// 转到按钮
        /// 

        /// 
        /// 
        private void toolStripButton1_Click(object sender EventArgs e)
        {
            newCurrentPageUrl(tscburl.Text);
        }
        /// 


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      49152  2009-07-20 10:29  MyWebIE\MyWebIE\bin\Debug\Interop.IWshRuntimeLibrary.dll

     文件      69632  2009-07-20 10:35  MyWebIE\MyWebIE\bin\Debug\MyWebIE.exe

     文件      73216  2009-07-20 10:35  MyWebIE\MyWebIE\bin\Debug\MyWebIE.pdb

     文件       5632  2005-11-11 22:25  MyWebIE\MyWebIE\bin\Debug\MyWebIE.vshost.exe

     文件      20046  2009-07-20 10:35  MyWebIE\MyWebIE\frmIE.cs

     文件      26751  2009-07-20 10:35  MyWebIE\MyWebIE\frmIE.Designer.cs

     文件      21707  2009-07-20 10:35  MyWebIE\MyWebIE\frmIE.resx

     文件       2565  2008-05-30 11:49  MyWebIE\MyWebIE\frmNeatenFavorites.cs

     文件       4261  2008-05-30 11:47  MyWebIE\MyWebIE\frmNeatenFavorites.Designer.cs

     文件       5814  2008-05-30 11:47  MyWebIE\MyWebIE\frmNeatenFavorites.resx

     文件       2528  2008-05-30 11:44  MyWebIE\MyWebIE\frmOpenFavorites.cs

     文件       5401  2008-05-30 11:31  MyWebIE\MyWebIE\frmOpenFavorites.Designer.cs

     文件       9221  2008-05-30 11:31  MyWebIE\MyWebIE\frmOpenFavorites.resx

     文件        871  2008-05-30 11:09  MyWebIE\MyWebIE\frmSource.cs

     文件       2258  2008-05-30 11:09  MyWebIE\MyWebIE\frmSource.Designer.cs

     文件       5814  2008-05-30 11:09  MyWebIE\MyWebIE\frmSource.resx

     文件       2862  2008-06-12 10:51  MyWebIE\MyWebIE\IEImage\主页.ico

     文件       2862  2008-06-12 10:51  MyWebIE\MyWebIE\IEImage\停止.ico

     文件       2862  2008-06-12 10:51  MyWebIE\MyWebIE\IEImage\刷新.ico

     文件       2862  2008-06-12 10:51  MyWebIE\MyWebIE\IEImage\前进.ico

     文件       2862  2008-06-12 10:51  MyWebIE\MyWebIE\IEImage\后退.ico

     文件       2862  2008-06-12 10:51  MyWebIE\MyWebIE\IEImage\打印.ico

     文件       2862  2008-06-12 10:51  MyWebIE\MyWebIE\IEImage\搜索.ico

     文件       2862  2008-06-12 10:51  MyWebIE\MyWebIE\IEImage\新建.ico

     文件       2862  2008-06-12 11:09  MyWebIE\MyWebIE\IEImage\浏览器.ico

     文件       2862  2008-06-12 11:09  MyWebIE\MyWebIE\IEImage\转到.ico

     文件       6351  2008-08-11 09:44  MyWebIE\MyWebIE\MyWebIE.csproj

     文件        168  2008-06-12 11:11  MyWebIE\MyWebIE\MyWebIE.csproj.user

     文件      49152  2009-07-20 10:29  MyWebIE\MyWebIE\obj\Debug\Interop.IWshRuntimeLibrary.dll

     文件     126976  2008-05-30 11:36  MyWebIE\MyWebIE\obj\Debug\Interop.SHDocVw.dll

............此处省略38个文件信息

评论

共有 条评论