您的位置:首页 > 编程语言 > C#

C# 打印表格源码(自定义)

2016-02-18 14:57 267 查看
主函数如下:
using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using YdtcPrinter.winform;

using System.Data;

namespace YdtcPrinter

{

public class IsMain

{

/// <summary>

/// The main entry point for the application.

/// </summary>

[STAThread]

static void Main()

{

new tablePrint().PrintPriview();//这是浏览函数,需要打印请调用print();

}

}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: