ExDataGridView 群组扩展 ...
DataGridView是非常强大的控件,当然有时他也不能满足我们现有的需求,当然我门就要对他进行扩展。 此控件我会逐步的扩展功能.
先上图咱们来看看效果,当然处理方式不是最佳的忘提供建议,此群组样式为DevGridView样式。
解决方案,首先通过 public void BindingDataSource(DataTable dataTable, string group) 绑定数据员并设置群组合并列
分析数据群组信息,并将数据群组信息记录,通过群组数据重绘,将数据绑定控件。
放上重绘代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | protected override void OnRowPostPaint(DataGridViewRowPostPaintEventArgs e) { base .OnRowPostPaint(e); int rowIndex = 0; bool flag = false ; string group = string .Empty; bool _curflag = false ; foreach (GroupRows gr in this .GroupRowsColloce) { group = gr.GroupName; _curflag = gr.IsAllExpland; if (e.RowIndex == gr.GroupIndex) { flag = true ; break ; } if (e.RowIndex >= gr.GroupIndex) { rowIndex++; } } if (!flag) { Rectangle rectangle = new Rectangle(e.RowBounds.Location.X, e.RowBounds.Location.Y, RowHeadersWidth - 4, e.RowBounds.Height); TextRenderer.DrawText(e.Graphics, (e.RowIndex + 1 - rowIndex).ToString(), RowHeadersDefaultCellStyle.Font, rectangle, Color.Black, TextFormatFlags.VerticalCenter | TextFormatFlags.HorizontalCenter); } else { e.Graphics.FillRectangle( new SolidBrush(Color.FromArgb(206, 206, 206)), new Rectangle(e.RowBounds.X, e.RowBounds.Y, e.RowBounds.Width, this .Height + 2)); e.Graphics.DrawRectangle( new Pen( new SolidBrush(Color.FromArgb(220, 220, 220))), new Rectangle(e.RowBounds.X, e.RowBounds.Y, e.RowBounds.Width, this .Height + 2)); if (_curflag) { e.Graphics.DrawImage(Properties.Resources.sub, new Rectangle(e.RowBounds.X, e.RowBounds.Y + (e.RowBounds.Height - Properties.Resources.add.Width) / 2, Properties.Resources.add.Width, Properties.Resources.add.Height)); } else { e.Graphics.DrawImage(Properties.Resources.add, new Rectangle(e.RowBounds.X, e.RowBounds.Y + (e.RowBounds.Height - Properties.Resources.add.Width) / 2, Properties.Resources.add.Width, Properties.Resources.add.Height)); } StringFormat stringFormat = new StringFormat(); stringFormat.LineAlignment = StringAlignment.Center; e.Graphics.DrawString( group , new Font( "宋体" , 9), new SolidBrush(Color.Black), new Rectangle(e.RowBounds.X + Properties.Resources.add.Width + 2, e.RowBounds.Y + 2, e.RowBounds.Width, e.RowBounds.Height), stringFormat); } } |
控件的扩展都会提供给我门重构方法。我们只要通过重构|重绘都会得到我们想要的结果。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?