ImageVerifierCode 换一换
格式:DOCX , 页数:26 ,大小:111.32KB ,
资源ID:22598592      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/22598592.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(DataGridView二维表头与合并单元格Word下载.docx)为本站会员(b****7)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

DataGridView二维表头与合并单元格Word下载.docx

1、 private ArrayList _columnList = new ArrayList(); private int _cellHeight = 17; public int CellHeight get return _cellHeight; set _cellHeight = value; private int _columnDeep = 1; private bool HscrollRefresh = false; / / 水平滚动时是否刷新表头,数据较多时可能会闪烁,不刷新时可能显示错误/summary Description(水平滚动时是否刷新表头,数据较多时可能会闪烁,不刷

2、新时可能显示错误) public bool RefreshAtHscroll get return HscrollRefresh; set HscrollRefresh = value; / 构造函数 public HeaderUnitView() InitializeComponent(); this.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing; /设置列高度显示模式 public HeaderUnitView(IContainer container) conta

3、iner.Add(this);设置或获得合并表头树的深度 public int ColumnDeep get if (this.Columns.Count = 0) _columnDeep = 1; this.ColumnHeadersHeight = _cellHeight * _columnDeep; return _columnDeep; set if (value 1) else _columnDeep = value;添加合并式单元格绘制的所需要的节点对象 public TreeView ColumnTreeView get return _columnTreeView; if (_

4、columnTreeView != null) for (int i = 0; i = _columnTreeView.Length - 1; i+) _columnTreeViewi.Dispose(); _columnTreeView = value;设置添加的字段树的相关属性 public TreeView ColumnTreeViewNode get return _columnTreeView0; / 设置或获取合并列的集合 MergableProperty(false) Editor(System.Windows.Forms.Design.ListControlStringColl

5、ectionEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, typeof(UITypeEditor) DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Visible) Localizable(true)设置或获取合并列的集合), Browsable(true), Category(单元格合并 public List MergeColumnNa

6、mes return _mergecolumnname; _mergecolumnname = value; private List _mergecolumnname = new List(); public ArrayList NadirColumnList if (_columnTreeView = null) return null; if (_columnTreeView0 = null) if (_columnTreeView0.Nodes = null) if (_columnTreeView0.Nodes.Count = 0) _columnList.Clear(); GetN

7、adirColumnNodes(_columnList, _columnTreeView0.Nodes0, false); return _columnList; /合并表头节点e绘图参数集level结点深度 public void PaintUnitHeader( TreeNode node, System.Windows.Forms.DataGridViewCellPaintingEventArgs e, int level) /根节点时退出递归调用 if (level = 0) return; RectangleF uhRectangle; int uhWidth; SolidBrush

8、 gridBrush = new SolidBrush(this.GridColor); SolidBrush backColorBrush = new SolidBrush(e.CellStyle.BackColor); Pen gridLinePen = new Pen(gridBrush); StringFormat textFormat = new StringFormat(); textFormat.Alignment = StringAlignment.Center; uhWidth = GetUnitHeaderWidth(node); if (node.Nodes.Count

9、= 0) uhRectangle = new Rectangle(e.CellBounds.Left, e.CellBounds.Top + node.Level * _cellHeight, uhWidth - 1, _cellHeight * (_columnDeep - node.Level) - 1); uhRectangle = new Rectangle( e.CellBounds.Left, _cellHeight - 1); /画矩形 e.Graphics.FillRectangle(backColorBrush, uhRectangle); /划底线 e.Graphics.D

10、rawLine(gridLinePen , uhRectangle.Left , uhRectangle.Bottom , uhRectangle.Right , uhRectangle.Bottom); /划右端线 , uhRectangle.Top /写字段文本 e.Graphics.DrawString(node.Text, this.Font , new SolidBrush(e.CellStyle.ForeColor) , uhRectangle.Left + uhRectangle.Width / 2 - e.Graphics.MeasureString(node.Text, th

11、is.Font).Width / 2 - 1 , uhRectangle.Top + uhRectangle.Height / 2 - e.Graphics.MeasureString(node.Text, this.Font).Height / 2); /递归调用() if (node.PrevNode = null) if (node.Parent ! PaintUnitHeader(node.Parent, e, level - 1); / 获得合并标题字段的宽度字段节点字段宽度 private int GetUnitHeaderWidth(TreeNode node) /获得非最底层字

12、段的宽度 int uhWidth = 0; /获得最底层字段的宽度 if (node.Nodes = null) return this.ColumnsGetColumnListNodeIndex(node).Width;= node.Nodes.Count - 1; uhWidth = uhWidth + GetUnitHeaderWidth(node.Nodesi); return uhWidth; / 获得底层字段索引 / 底层字段节点索引 private int GetColumnListNodeIndex(TreeNode node)= _columnList.Count - 1;

13、if (TreeNode)_columnListi).Equals(node) return i; return -1; / 获得底层字段集合alList底层字段集合checked向上搜索与否 private void GetNadirColumnNodes( ArrayList alList, Boolean isChecked) if (isChecked = false) if (node.FirstNode = null) alList.Add(node); if (node.NextNode ! GetNadirColumnNodes(alList, node.NextNode, false); GetNadirColumnNodes(alList, node.Parent, true); if (node.FirstNode ! GetNadirColumnNodes(alList, node.FirstNode, false); GetNadirColumnNodes(alList, node.NextNode, f

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1