• 大小: 110KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-23
  • 语言: C#
  • 标签:

资源简介

Winform C#可视化打印模板设计工具(含源码)

资源截图

代码片段和文件信息

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 test0820
{
    public partial class CodeView : Form
    {

        public string Code { get; set; }

        public CodeView(string code)
        {
            InitializeComponent();
            this.txtCode.Text = code;
        }

        private void btnOK_Click(object sender EventArgs e)
        {
            Code = txtCode.Text;
            this.DialogResult = DialogResult.OK;
        }

        private void btnCancel_Click(object sender EventArgs e)
        {
            this.DialogResult = DialogResult.Cancel;
        }
    }
}

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

     文件      36352  2014-08-21 17:17  test0820\test0820\bin\Debug\test0820.exe

     文件      97792  2014-08-21 17:17  test0820\test0820\bin\Debug\test0820.pdb

     文件      14328  2014-08-21 17:16  test0820\test0820\bin\Debug\test0820.vshost.exe

     文件       6823  2014-08-21 17:16  test0820\test0820\bin\Debug\tpl.xml

     文件        774  2014-08-21 14:01  test0820\test0820\CodeView.cs

     文件       3813  2014-08-21 14:01  test0820\test0820\CodeView.Designer.cs

     文件       5814  2014-08-21 14:01  test0820\test0820\CodeView.resx

     文件       4916  2014-08-21 14:50  test0820\test0820\Controls\LabelExt.cs

     文件       1117  2014-08-21 11:31  test0820\test0820\Controls\LabelExt.Designer.cs

     文件       5066  2014-08-21 14:50  test0820\test0820\Controls\TextBoxExt.cs

     文件       1119  2014-08-21 10:14  test0820\test0820\Controls\TextBoxExt.Designer.cs

     文件      12542  2014-08-21 17:10  test0820\test0820\Form1.cs

     文件      11151  2014-08-21 16:33  test0820\test0820\Form1.Designer.cs

     文件       6020  2014-08-21 16:33  test0820\test0820\Form1.resx

     文件      16810  2014-08-21 17:11  test0820\test0820\Helpers\DrawHelper.cs

     文件       3757  2014-08-21 17:11  test0820\test0820\Helpers\WinHelper.cs

     文件       8661  2014-08-21 17:13  test0820\test0820\Helpers\xmlHelper.cs

     文件     144381  2014-08-21 15:53  test0820\test0820\obj\Debug\ResolveAssemblyReference.cache

     文件        180  2014-08-21 17:17  test0820\test0820\obj\Debug\test0820.CodeView.resources

     文件       2663  2014-08-21 17:16  test0820\test0820\obj\Debug\test0820.csproj.FileListAbsolute.txt

     文件        908  2014-08-21 16:34  test0820\test0820\obj\Debug\test0820.csproj.GenerateResource.Cache

     文件      36352  2014-08-21 17:17  test0820\test0820\obj\Debug\test0820.exe

     文件        180  2014-08-21 17:17  test0820\test0820\obj\Debug\test0820.Form1.resources

     文件      97792  2014-08-21 17:17  test0820\test0820\obj\Debug\test0820.pdb

     文件        180  2014-08-21 17:17  test0820\test0820\obj\Debug\test0820.Properties.Resources.resources

     文件        489  2014-08-20 17:14  test0820\test0820\Program.cs

     文件       1348  2014-08-20 17:14  test0820\test0820\Properties\AssemblyInfo.cs

     文件       2866  2014-08-20 17:14  test0820\test0820\Properties\Resources.Designer.cs

     文件       5612  2014-08-20 17:14  test0820\test0820\Properties\Resources.resx

     文件       1093  2014-08-20 17:14  test0820\test0820\Properties\Settings.Designer.cs

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

评论

共有 条评论