• 大小: 81KB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2021-06-17
  • 语言: C#
  • 标签:

资源简介

这是一款基于WinForm的简单IE浏览器源码,实现了其基本功能,支持查看网页的源代码,比较适合新手参考使用,感兴趣的朋友们欢迎下载看看啊。 功能介绍:本源码主要实现了了浏览器的基本功能,以及源代码信息的查看。注意事项:     1、开发环境为Visual Studio 2010,无数据库,使用.net 4.0开发。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WebBrz
{
    public partial class dlgShowSourceCode : Form
    {
        public string title;
        public string HtmlSourceCode;
        public dlgShowSourceCode()
        {
            InitializeComponent();
        }

        private void dlgShowSourceCode_Shown(object sender EventArgs e)
        {
            this.Text = title;
            txtSourceCode.Text = HtmlSourceCode;
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-09-04 22:58  WebBrzIE\
     目录           0  2014-10-09 12:13  WebBrzIE\bin\
     目录           0  2014-10-09 12:13  WebBrzIE\bin\Debug\
     文件          49  2015-09-04 22:58  WebBrzIE\bin\Debug\config.text
     文件       23552  2015-03-09 16:19  WebBrzIE\bin\Debug\WebBrz.exe
     文件       48640  2015-03-09 16:19  WebBrzIE\bin\Debug\WebBrz.pdb
     文件       11600  2015-03-09 13:14  WebBrzIE\bin\Debug\WebBrz.vshost.exe
     文件         490  2012-06-02 22:34  WebBrzIE\bin\Debug\WebBrz.vshost.exe.manifest
     文件         602  2014-10-09 12:13  WebBrzIE\dlgShowSourceCode.cs
     文件        2216  2014-10-09 12:13  WebBrzIE\dlgShowSourceCode.Designer.cs
     文件        5698  2014-10-09 12:13  WebBrzIE\dlgShowSourceCode.resx
     文件        5647  2014-10-09 12:13  WebBrzIE\frmMain.cs
     文件       10820  2014-10-09 12:13  WebBrzIE\frmMain.Designer.cs
     文件        7529  2014-10-09 12:13  WebBrzIE\frmMain.resx
     目录           0  2014-10-09 12:13  WebBrzIE\obj\
     目录           0  2014-10-09 12:13  WebBrzIE\obj\x86\
     目录           0  2015-03-09 16:39  WebBrzIE\obj\x86\Debug\
     文件        2867  2015-03-09 16:39  WebBrzIE\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        6867  2015-03-09 16:19  WebBrzIE\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件        3266  2014-10-09 12:13  WebBrzIE\obj\x86\Debug\GenerateResource.read.1.tlog
     文件        4010  2014-10-09 12:13  WebBrzIE\obj\x86\Debug\GenerateResource.write.1.tlog
     文件        7897  2014-10-09 12:13  WebBrzIE\obj\x86\Debug\ResolveAssemblyReference.cache
     目录           0  2014-10-09 12:13  WebBrzIE\obj\x86\Debug\TempPE\
     文件        5120  2014-10-09 12:13  WebBrzIE\obj\x86\Debug\TempPE\Properties.Resources.Designer.cs.dll
     文件        3234  2015-03-09 13:14  WebBrzIE\obj\x86\Debug\WebBrz.csproj.FileListAbsolute.txt
     文件        1297  2015-03-09 13:14  WebBrzIE\obj\x86\Debug\WebBrz.csproj.GenerateResource.Cache
     文件         180  2014-10-09 12:13  WebBrzIE\obj\x86\Debug\WebBrz.dlgShowSourceCode.resources
     文件       23552  2015-03-09 16:19  WebBrzIE\obj\x86\Debug\WebBrz.exe
     文件        1142  2014-10-09 12:13  WebBrzIE\obj\x86\Debug\WebBrz.frmMain.resources
     文件       48640  2015-03-09 16:19  WebBrzIE\obj\x86\Debug\WebBrz.pdb
     文件        6229  2014-10-09 12:13  WebBrzIE\obj\x86\Debug\WebBrz.Properties.Resources.resources
............此处省略17个文件信息

评论

共有 条评论

相关资源