永发信息网

C#可以控制打印机么?谁有教程或者代码

答案:5  悬赏:30  手机版
解决时间 2021-02-28 15:39
  • 提问者网友:喧嚣尘世
  • 2021-02-27 21:46
想用C#写个程序,用户点击某个按钮,可以打印相关数据,查了一下,VC++,VB的有,不知道C#可不可以,我没有学过VC++和VB,谁有教程或者代码可以分享一下么....
最佳答案
  • 五星知识达人网友:未来江山和你
  • 2021-02-27 22:44
C#中打印控件的使用

在同学的帮助下终于把,打印的程序搞定了^_^.弄出来共享一下吧. 首先弄一个printDocument控件,然后在打印的按钮中直接调用printDocument1.print()事件. 再次嘛就是写printDocument的PrintPag事件了. 下面是我昨天弄好的一个弄出来看看吧。

private void button1_Click(object sender, EventArgs e)

{

printDocument1.Print();

}

private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)

{

Font tabelTextFont = new Font("宋体", 10);

if (dataGridView1.DataBindings != null)

{

int[] columnsWidth = new int[dataGridView1.Columns.Count];//得到所有列的个数

int[] columnsLeft=new int[dataGridView1.Columns.Count]; //

for (int c = 0; c < columnsWidth.Length; c++)//得到列标题的宽度

{

columnsWidth[c] = (int)e.Graphics.MeasureString(dataGridView1.Columns[c].HeaderText , tabelTextFont).Width;

}

for (int rowIndex = 0; rowIndex < dataGridView1.Rows.Count; rowIndex++)//rowindex当前行

{

for (int columnIndex = 0; columnIndex < dataGridView1.Columns.Count; columnIndex++)//当前列

{

int w = (int)e.Graphics.MeasureString(dataGridView1.Columns[columnIndex].Name , tabelTextFont).Width; columnsWidth[columnIndex] = w > columnsWidth[columnIndex] ? w : columnsWidth[columnIndex];

}

}

int rowHidth = 20;

int tableLeft=60;

int tableTop=70;

columnsLeft[0]=tableLeft;

for (int i=1;i<=columnsWidth.Length -1;i++)

{

columnsLeft[i] = columnsLeft[i - 1] + columnsWidth[i - 1]+15;

}

StringFormat sf=new StringFormat ();

sf.Alignment=StringAlignment.Center ;//居中打印

e.Graphics.DrawString("欢迎石印死了开的交流!", new Font("宋体", 15), Brushes.Black, new Point(e.PageBounds.Width / 2, 20),sf );//打印标题

for (int c = 0; c < columnsWidth.Length; c++)//打印表中的列名

{

e.Graphics.DrawString(dataGridView1.Columns[c].HeaderText,new Font ("宋体",10,FontStyle.Bold), Brushes.Black, new Point(columnsLeft[c], tableTop)); e.Graphics.DrawLine(Pens.Black, new Point(columnsLeft[c]-5, tableTop - 5), new Point(columnsLeft[c]-5, tableTop + (dataGridView1 .Rows .Count+1)*rowHidth));

}

e.Graphics.DrawLine(Pens.Black, new Point(columnsLeft[dataGridView1.Columns.Count - 1] + columnsWidth[dataGridView1.Columns.Count - 1], tableTop - 5), new Point(columnsLeft[dataGridView1.Columns.Count - 1] + columnsWidth[dataGridView1.Columns.Count - 1], tableTop + (dataGridView1.Rows.Count + 1) * rowHidth));//画最后面的线

e.Graphics.DrawLine(Pens.Black, new Point(columnsLeft[0] - 5, tableTop - 5), new Point(columnsLeft[dataGridView1.Columns.Count - 1] + columnsWidth[dataGridView1.Columns.Count - 1], tableTop - 5)); for (int rowIndex = 0; rowIndex < dataGridView1.Rows.Count; rowIndex++)//打印表中的内容

{

for (int columnIndex = 0; columnIndex < dataGridView1.Columns.Count; columnIndex++)

{

e.Graphics.DrawString(dataGridView1.Rows[rowIndex].Cells[columnIndex].Value.ToString(), tabelTextFont, Brushes.Black, new Point(columnsLeft[columnIndex], tableTop + rowHidth * (rowIndex + 1)));

}

e.Graphics.DrawLine(Pens.Black, new Point(columnsLeft[0]-5, tableTop + (rowIndex +1) * rowHidth-5), new Point(columnsLeft[dataGridView1.Columns.Count - 1] + columnsWidth[dataGridView1.Columns.Count - 1], tableTop + (rowIndex +1)*rowHidth-5));//循环画行

}

}

另外要是想有打印预览的话,那就还要一个printPreviewDialog控件了。要把该控件的document事件和PrintDocument关联起来,就可以了。
全部回答
  • 1楼网友:人類模型
  • 2021-02-28 03:52
当然可以
  • 2楼网友:大漠
  • 2021-02-28 02:15
c#使用控件就可以了 很简单实现
  • 3楼网友:野味小生
  • 2021-02-28 01:13
有关于打印机的 控件 可以试试
  • 4楼网友:夜风逐马
  • 2021-02-27 23:45
Excel.Application xApp = new Excel.ApplicationClass(); xApp.Visible = true; Excel.Workbook xBook = xApp.Workbooks._Open(path, Missing.Value, Missing.Value, Missing.Value, Missing.Value , Missing.Value, Missing.Value, Missing.Value, Missing.Value , Missing.Value, Missing.Value, Missing.Value, Missing.Value); xBook.PrintPreview(true); xBook.PrintOut( Missing.Value ,Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value, Missing.Value); xSheet = null; xBook = null; xApp.Quit(); xApp = null;
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯