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

资源简介

自己写的,运用dot net解析XML文件,并在用WinForm进行显示。。。。。

资源截图

代码片段和文件信息

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

namespace xmlRW
{
    public partial class FrmMain : Form
    {
        public FrmMain()
        {
            InitializeComponent();
        }

        private void toolStripMenuItem1_Click(object sender EventArgs e)
        {
            OpenFileDialog dialog1 = new OpenFileDialog();
            dialog1.Filter = “FR 文件(*.fr)|*.fr“;
            if (dialog1.ShowDialog() == DialogResult.OK)
            {
                this.tabControl.TabPages.Clear();
                this.strxmlPath = dialog1.FileName;
                this.tabControl = PageParse.getTabControl(strxmlPath this.tabControl);
            }
            this.Controls.Add(this.tabControl);
        }

        private void Form1_Load(object sender EventArgs e)
        {
            int screenWidth = Screen.PrimaryScreen.Bounds.Width;
            int screenHeight = Screen.PrimaryScreen.Bounds.Height;
            this.Width = screenWidth / 2;
            this.Height = screenHeight / 2;
        }
    }
}

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

     文件      17920  2011-08-10 16:01  xmlRW\bin\Debug\xmlRW.exe

     文件      32256  2011-08-10 16:01  xmlRW\bin\Debug\xmlRW.pdb

     文件      14328  2011-08-10 16:04  xmlRW\bin\Debug\xmlRW.vshost.exe

     文件        490  2007-07-21 01:33  xmlRW\bin\Debug\xmlRW.vshost.exe.manifest

     文件       8839  2006-04-20 10:29  xmlRW\data\IDSReportSave.fr

     文件       1220  2011-08-10 13:49  xmlRW\FrmMain.cs

     文件       3734  2011-08-10 16:01  xmlRW\FrmMain.Designer.cs

     文件       6012  2011-08-10 13:46  xmlRW\FrmMain.resx

     文件       2329  2010-03-23 10:19  xmlRW\image\open.jpg

     文件       4608  2011-08-03 13:46  xmlRW\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll

     文件       1032  2011-08-10 16:04  xmlRW\obj\Debug\xmlRW.csproj.FileListAbsolute.txt

     文件        883  2011-08-10 13:46  xmlRW\obj\Debug\xmlRW.csproj.GenerateResource.Cache

     文件      17920  2011-08-10 16:01  xmlRW\obj\Debug\xmlRW.exe

     文件        180  2011-08-10 13:46  xmlRW\obj\Debug\xmlRW.FrmMain.resources

     文件      32256  2011-08-10 16:01  xmlRW\obj\Debug\xmlRW.pdb

     文件       2824  2011-08-05 16:29  xmlRW\obj\Debug\xmlRW.Properties.Resources.resources

     文件      13640  2011-08-09 09:35  xmlRW\PageParse.cs

     文件        488  2011-08-03 13:41  xmlRW\Program.cs

     文件       1366  2011-08-03 13:40  xmlRW\Properties\AssemblyInfo.cs

     文件       3084  2011-08-03 13:45  xmlRW\Properties\Resources.Designer.cs

     文件       6191  2011-08-03 13:45  xmlRW\Properties\Resources.resx

     文件       1090  2011-08-03 13:40  xmlRW\Properties\Settings.Designer.cs

     文件        249  2011-08-03 13:40  xmlRW\Properties\Settings.settings

     文件       3878  2011-08-05 16:20  xmlRW\xmlRW.csproj

     文件        905  2011-08-03 13:42  TestxmlRW.sln

    ..A..H.     17920  2011-08-10 16:02  TestxmlRW.suo

     目录          0  2011-08-10 16:05  xmlRW\obj\Debug\Refactor

     目录          0  2011-08-10 16:05  xmlRW\obj\Debug\TempPE

     目录          0  2011-08-10 16:05  xmlRW\bin\Debug

     目录          0  2011-08-10 16:05  xmlRW\obj\Debug

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

评论

共有 条评论