实例介绍
【实例简介】
【实例截图】
【核心代码】
using System;
using System.Collections.Generic;
using System.ComponentModel;
using DLLFullPrint;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace DLLFullPrint
{
public partial class Frm_PrintSet : Form
{
public Frm_PrintSet()
{
InitializeComponent();
}
public static DataSet MyDS_Grid;
public int header = 30; //标题栏的默认高度
public int row = 23; //单元格的默认高度
public Color linecolor = Color.Black; //边线的颜色
public int linewidth = 1; //边线的宽度
public bool PLintUP = true;
public bool PLintLeft = true;
public bool PLintUnit = true;
public bool Aspect = true;//打印方向
public bool boundary = false;//是否打印分割线
#region 设置打印数据的相关信息
/// <summary>
/// 设置打印数据的相关信息
/// </summary>
/// <param dgp="PrintClass">公共类PrintClass</param>
public void MSetUp(PrintClass dgp)
{
string n="false";
string[] margin = new string[4];
if (checkBox_margin.Checked==true)
n="true";
else
n="alse";
margin[0]=n;
margin[1] = textBox_topmargin.Text;
margin[2] = textBox_leftmargin.Text;
margin[3] = textBox_buttommargin.Text;
dgp.PrintSetUp(margin);
dgp.headerheight = this.header;//列标题的默认高度
if (checkBox_Header.Checked == true)//列标题
{
dgp.brushHeaderFont = new SolidBrush(dataGridView1.ColumnHeadersDefaultCellStyle.ForeColor);//前景色
dgp.headerfont = dataGridView1.ColumnHeadersDefaultCellStyle.Font;//字体样式
dgp.brushHeaderBack = new SolidBrush(dataGridView1.ColumnHeadersDefaultCellStyle.BackColor);//背景色
dgp.headerheight = dataGridView1.ColumnHeadersHeight;//列标题的高度
}
if (checkBox_Cell.Checked == true)//单元格
{
dgp.Cellfont = dataGridView1.RowsDefaultCellStyle.Font;//字体样式
dgp.brushCellBack = new SolidBrush(dataGridView1.RowsDefaultCellStyle.BackColor);//背景色
dgp.brushCellFont = new SolidBrush(dataGridView1.RowsDefaultCellStyle.ForeColor);//前景色
dgp.rowgap = row;
}
if (checkBox_Table.Checked == true)//表格
{
dgp.AlignmentSgin = this.comboBox_Alignment.SelectedIndex;//对齐方式
}
dgp.iseverypageprinttitle = checkBox_Title.Checked;//是否每一页都打印标题
dgp.needprintpageindex = checkBox_Page.Checked;//是否每一页都打印页脚
dgp.PageAspect = Aspect;//设置横向打印
//设置表格的边线
dgp.LineUP = PLintUP;//是否打印上边线
dgp.LineLeft = PLintLeft;//是否打印左边线
dgp.LineUnit = PLintUnit;//是否打印单元格边线
dgp.LineColor = linecolor;//设置线的颜色
dgp.Boundary = checkBox_Boundary.Checked;//是否打印分割线
dgp.HAlignment = comboBox_HAlignment.SelectedIndex;//列标题的对齐方式
dgp.UAlignment = comboBox_UAlignment.SelectedIndex;//单元格的对齐方式
}
#endregion
public void Barbarism_DataGrid(int n)
{
if (n == 0)
{
Font Hfont = new Font("宋体", 10);
dataGridView1.ColumnHeadersDefaultCellStyle.BackColor = Color.White;//列标题的背景颜色
dataGridView1.ColumnHeadersDefaultCellStyle.ForeColor = Color.Black;//列标题的字体颜色
dataGridView1.ColumnHeadersDefaultCellStyle.Font = Hfont;//列标题的字体样式
dataGridView1.ColumnHeadersHeight = 30;//列标题的高度
textBox_Size.Text = dataGridView1.ColumnHeadersHeight.ToString();//列标题的高度
}
if (n == 1)
{
Font Hfont = new Font("宋体", 9);
dataGridView1.RowsDefaultCellStyle.BackColor = Color.White;//单元格的背景颜色
dataGridView1.RowsDefaultCellStyle.ForeColor = Color.Black;//单元格的字体颜色
dataGridView1.RowsDefaultCellStyle.Font = Hfont;//单元格的字体样式
textBox_CellSize.Text = dataGridView1.Rows[0].Height.ToString();//单元格的高度
}
}
public void InputCount(KeyPressEventArgs e, object sender, int n)
{
int tsele = 0;
if (!(e.KeyChar <= '9' && e.KeyChar >= '0') && e.KeyChar != '\r' && e.KeyChar != '\b')
{
e.Handled = true; //处理KeyPress事件
}
else
{
if (((TextBox)sender).SelectedText != "")
{
tsele = ((TextBox)sender).SelectionLength;
}
if (n >0) //只能输入2位数
{
if (e.KeyChar <= '9' && e.KeyChar >= '0')
if (((((TextBox)sender).Text).Length-tsele 1) > n)
e.Handled = true; //处理KeyPress事件
}
}
}
public void SetCheckBox(CheckBox CheckB, GroupBox GroupB)
{
if (CheckB.Checked == true)//如果CheckBox控件为可用状态
GroupB.Enabled = false;//不可用
else
GroupB.Enabled = true;//可用
}
public void TextBoxValue(object sender,int d,int n,int m)
{
if (((TextBox)sender).Text == "")
{
((TextBox)sender).Text = d.ToString();
}
if (int.Parse(((TextBox)sender).Text) < n || int.Parse(((TextBox)sender).Text) > m)
{
if (int.Parse(((TextBox)sender).Text) < n)
((TextBox)sender).Text = n.ToString();
if (int.Parse(((TextBox)sender).Text) > m)
((TextBox)sender).Text = m.ToString();
}
}
private void button_Preview_Click(object sender, EventArgs e)
{
//对打印信息进行设置
PrintClass dgp = new PrintClass(this.dataGridView1, this.textBox_Title.Text, 16, comboBox_PageSize.SelectedIndex, checkBox_Aspect.Checked);
MSetUp(dgp);//记录窗体中打印信息的相关设置
string[] header = new string[dataGridView1.ColumnCount];//创建一个与数据列相等的字符串数组
for (int p = 0; p < dataGridView1.ColumnCount; p )//记录所有列标题的名列
{
header[p] = dataGridView1.Columns[p].HeaderCell.Value.ToString();
}
dgp.print();//显示打印预览窗体
}
private void Form1_Load(object sender, EventArgs e)
{
MyDS_Grid = MyDLL.SendOut();
dataGridView1.DataSource = MyDS_Grid.Tables[0];
dataGridView1.RowHeadersVisible = false;
comboBox_PageSize.SelectedIndex = 0;
comboBox_HAlignment.SelectedIndex = 0;
comboBox_UAlignment.SelectedIndex = 0;
Barbarism_DataGrid(0);
Barbarism_DataGrid(1);
}
private void checkBox_margin_MouseDown(object sender, MouseEventArgs e)
{
SetCheckBox(((CheckBox)sender), groupBox3);
}
private void button_BackColor_Click(object sender, EventArgs e)
{
if (colorDialog1.ShowDialog() == DialogResult.OK)
dataGridView1.ColumnHeadersDefaultCellStyle.BackColor = colorDialog1.Color;//列标题的背景颜色
}
private void button_Fint_Click(object sender, EventArgs e)
{
if (fontDialog1.ShowDialog() == DialogResult.OK)
dataGridView1.ColumnHeadersDefaultCellStyle.Font = fontDialog1.Font;//列名标题
fontDialog1.Dispose();
}
private void checkBox_Title_MouseDown(object sender, MouseEventArgs e)
{
SetCheckBox(((CheckBox)sender), groupBox4);
}
private void button_FontColor_Click(object sender, EventArgs e)
{
if (colorDialog1.ShowDialog() == DialogResult.OK)
dataGridView1.ColumnHeadersDefaultCellStyle.ForeColor = colorDialog1.Color;//列标题的字体颜色
colorDialog1.Dispose();
}
private void button_Default_Click(object sender, EventArgs e)
{
Barbarism_DataGrid(0);
}
private void button_CellFont_Click(object sender, EventArgs e)
{
if (fontDialog1.ShowDialog() == DialogResult.OK)
dataGridView1.RowsDefaultCellStyle.Font = fontDialog1.Font;//单元格字体
fontDialog1.Dispose();
}
private void button1_CellBackColor_Click(object sender, EventArgs e)
{
if (colorDialog1.ShowDialog() == DialogResult.OK)
dataGridView1.RowsDefaultCellStyle.BackColor = colorDialog1.Color;//单元格的字体背景颜色
colorDialog1.Dispose();
}
private void button_CellFontColor_Click(object sender, EventArgs e)
{
if (colorDialog1.ShowDialog() == DialogResult.OK)
dataGridView1.RowsDefaultCellStyle.ForeColor = colorDialog1.Color;//单元格的字体颜色
colorDialog1.Dispose();
}
private void checkBox_Cell_MouseDown(object sender, MouseEventArgs e)
{
SetCheckBox(((CheckBox)sender), groupBox5);
}
private void button_CellDefault_Click(object sender, EventArgs e)
{
Barbarism_DataGrid(1);
}
private void textBox_Size_Leave(object sender, EventArgs e)
{
TextBoxValue(sender, 30, 20, 99);
dataGridView1.ColumnHeadersHeight = int.Parse(textBox_Size.Text);
header = int.Parse(textBox_Size.Text);
}
private void textBox_Size_KeyPress(object sender, KeyPressEventArgs e)
{
InputCount(e, sender, 2);
if (e.KeyChar == '\r')
textBox_Size_Leave(sender, e);
}
public void DateGrid_CellHeight(DataGridView DG, int n)
{
for (int i = 0; i < DG.Rows.Count; i )
{
DG.Rows[i].Height = n;
}
}
private void textBox_CellSize_Leave(object sender, EventArgs e)
{
TextBoxValue(sender, 23, 20, 99);
DateGrid_CellHeight(dataGridView1, int.Parse(textBox_CellSize.Text));
row = int.Parse(textBox_CellSize.Text);
}
private void textBox_CellSize_KeyPress(object sender, KeyPressEventArgs e)
{
InputCount(e, sender, 2);
if (e.KeyChar == '\r')
textBox_CellSize_Leave(sender, e);
}
private void checkBox_Table_MouseDown(object sender, MouseEventArgs e)
{
SetCheckBox(((CheckBox)sender), groupBox6);
}
private void textBox_topmargin_KeyPress(object sender, KeyPressEventArgs e)
{
InputCount(e, sender, 3);
if (e.KeyChar == '\r')
textBox_topmargin_Leave(sender, e);
}
private void textBox_topmargin_Leave(object sender, EventArgs e)
{
TextBoxValue(sender, 60, 10, 500);
}
private void textBox_leftmargin_Leave(object sender, EventArgs e)
{
TextBoxValue(sender, 50, 10, 700);
}
private void textBox_leftmargin_KeyPress(object sender, KeyPressEventArgs e)
{
InputCount(e, sender, 3);
if (e.KeyChar == '\r')
textBox_leftmargin_Leave(sender, e);
}
private void textBox_buttommargin_KeyPress(object sender, KeyPressEventArgs e)
{
InputCount(e, sender, 3);
if (e.KeyChar == '\r')
textBox_buttommargin_Leave(sender, e);
}
private void textBox_buttommargin_Leave(object sender, EventArgs e)
{
TextBoxValue(sender, 50, 10, 500);
}
private void Frm_PrintSet_Activated(object sender, EventArgs e)
{//在窗体中绘制一个预览表格
Color Lcolor;
Graphics g = panel_Line.CreateGraphics();
int paneW = panel_Line.Width;//设置表格的宽度
int paneH = panel_Line.Height;//设置表格的高度
g.DrawRectangle(new Pen(Color.WhiteSmoke, paneW), 0, 0, paneW, paneH);//绘制一个矩形
if (PLintUnit == true)//如果绘制单元格线
Lcolor = linecolor;//设置单元格的颜色
else
Lcolor = Color.WhiteSmoke;//设置单元格线的颜为背景颜色
int unitW = (int)((paneW - 20 * 2) / 3);//设置单元格的宽度
int unitH = (int)((paneH - 20 * 2) / 3);//设置单元格的高度
int bW = 0, bH = 0;
//绘制一个3行3列的表格
for (int i = 0; i < 2; i )
{
g.DrawLine(new Pen(Lcolor, 1), 20 unitW, 20, 20 unitW, paneH - 20);//绘制纵线
if (boundary==true && i==0)//如果是分割线并且是第一条线
{
//设置分割线的坐标点
bW = paneW - 20;
bH = 20 unitH;
}
else
g.DrawLine(new Pen(Lcolor, 1), 20, 20 unitH, paneW - 20, 20 unitH);//绘制横线
unitH = unitH;//下一条横线的位置
unitW = unitW;//下一条纵线的位置
}
if (boundary == true)//绘制分割线
g.DrawLine(new Pen(linecolor, 1), 20, bH, bW, bH);
if (PLintUP == true)//绘制最上面的线
Lcolor = linecolor;//线的颜色
else
Lcolor = Color.WhiteSmoke;//与背景色相同的颜色
g.DrawLine(new Pen(Lcolor, linewidth), 20, 20, paneW - 20, 20);//绘制上线
g.DrawLine(new Pen(Lcolor, linewidth), 20, paneH - 20, paneW - 20, paneH - 20);//绘制下线
if (PLintLeft == true)//绘制最左面的线
Lcolor = linecolor;//线的颜色
else
Lcolor = Color.WhiteSmoke;//与背景色相同的颜色
g.DrawLine(new Pen(Lcolor, linewidth), 20, 20, 20, paneH - 20);//绘制左线
g.DrawLine(new Pen(Lcolor, linewidth), paneW - 20, 20, paneW - 20, paneH - 20);//绘制右线
}
private void Frm_PrintSet_Shown(object sender, EventArgs e)
{
Frm_PrintSet_Activated(sender, e);
}
private void checkBox_Aspect_MouseDown(object sender, MouseEventArgs e)
{//改变窗体中预览表格的方向
int aspX = 0;//宽度
int aspY = 0;//高度
if (((CheckBox)sender).Checked == false)//如果不是纵向打印
{
aspX = 136;//设置大小
aspY = 98;
PrintClass.PageScape = true;//横向打印
}
else
{
aspX = 100;//设置大小
aspY = 116;
PrintClass.PageScape = false;//纵向打印
}
panel_Line.Width = aspX;//设置控件的宽度
panel_Line.Height = aspY;//设置控件的高度
aspX = (int)((groupBox7.Width - aspX) / 2);//设置控件的Top
panel_Line.Location = new Point(aspX, 26);//设置控件的位置
Frm_PrintSet_Activated(sender, e);//设用Activated事件
}
private void checkBox_line_MouseDown(object sender, MouseEventArgs e)
{
SetCheckBox(((CheckBox)sender), groupBox7);
Frm_PrintSet_Activated(sender, e);
}
private void button_upline_Click(object sender, EventArgs e)
{
PLintUP = !PLintUP;
Frm_PrintSet_Activated(sender, e);
}
private void button_leftline_Click(object sender, EventArgs e)
{
PLintLeft = !PLintLeft;
Frm_PrintSet_Activated(sender, e);
}
private void button_cellline_Click(object sender, EventArgs e)
{
PLintUnit = !PLintUnit;
Frm_PrintSet_Activated(sender, e);
}
private void button_LineColor_Click(object sender, EventArgs e)
{
if (colorDialog1.ShowDialog() == DialogResult.OK)
linecolor = colorDialog1.Color;//边线颜色
colorDialog1.Dispose();
Frm_PrintSet_Activated(sender, e);
}
private void checkBox_Boundary_MouseDown(object sender, MouseEventArgs e)
{
boundary = !(((CheckBox)sender).Checked);
Frm_PrintSet_Activated(sender, e);
}
}
}
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明


网友评论
我要评论