C#WINFORM 的DATAGRIDVIEW多表头实现

本文介绍了如何在C#的WinForm应用中使用 DATAGRIDVIEW 实现多表头的功能。通过创建一个名为 `MultiHead` 的类,该类包含两个构造函数,用于初始化多表头数据,并提供了 `Draw` 方法来绘制多表头。代码中详细展示了如何根据标题和数据网格列进行匹配和绘制,确保表头正确显示。
摘要由CSDN通过智能技术生成

#region
///
/// 文件名称: Production_Plan.Lib.MultiHead.cs
/// 创建人:   jackhu
/// 创建日期: 2010-9-7 17:13:45 
/// 描述信息: 多表头的类
///
/// 修改历史
/// 修改人:
/// 修改时间:
/// 修改说明:
///
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Windows.Forms;

namespace Production_Plan.Lib
{
    class MultiHead
    {
        private DataGridView dataGridView;

        public MultiHead(DataGridView grid)
        {
            this.dataGridView = grid;
            string title = "";
            for (int i = 0; i != this.dataGridView.Columns.Count-1 ; ++i)
            {
                title += this.dataGridView.Columns[i].HeaderText + ",";
            }
            title = title.Substring(1, title.Length - 2);
            this.titleHead = new string[] { title };

        }

        //通过构造函出来限制title和格式与grid一致
        public MultiHead(DataGridView grid, string[] title)
        {
            //grid不等于null
            for (int i = 0; i != title.Length-1 ; ++i)
            {
                string[] s = title[i].Split(',');
                if (grid.Columns.Count == s.Length)
                {
                    continue;
                }
                else
                {
                    throw new Exception("title的元素个数与grid的栏位总数不一致.");
                }
            }
            this.dataGridView = grid;
            this.titleHead = title;
        }

        private string[] titleHead;
        public string[] TitleHead
        {
            get
            {
                return titleHead;
            }
        }

        public void Draw(DataGridViewCellPaintingEventArgs e)
        {
            if (e.RowIndex == -1)
            {
                using (
                    Brush gridBrush = new SolidBrush(this.dataGridView.GridColor),
                    backColorBrush = new SolidBrush(e.CellStyle.BackColor))
                {
                    using (Pen gridLinePen = new Pen(gridBrush))
                    {

                        if (e.ColumnIndex == -1)
                        {
                            e

C# WinForms应用程序中,使用原生DataGridView控件实现表头下拉筛选功能可以通过在DataGridView的CellPainting事件中添加逻辑来完成。以下是实现这一功能的一个基本步骤概述和示例代码: 1. 为DataGridView控件添加CellPainting事件处理器。 2. 在事件处理器中检查单元格是否为表头(THUMBNAILCell类型)。 3. 如果是表头单元格,绘制下拉箭头,并添加鼠标点击事件。 4. 当鼠标点击表头单元格时,显示一个自定义的下拉筛选菜单。 5. 用户从下拉菜单中选择筛选条件后,根据选择更新DataGridView的数据。 示例代码如下: ```csharp private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) { if (e.RowIndex == -1 && e.ColumnIndex > -1) // Header cells { // Draw arrow in header cell e.PaintBackground(e.CellBounds, false); using (Font headerFont = new Font(dataGridView1.Font, FontStyle.Bold)) { e.CellStyle.Font = headerFont; } Rectangle arrowRectangle = e.CellBounds; arrowRectangle.Width = arrowRectangle.Height; // make the arrow square Point arrowPoint = new Point(arrowRectangle.Right - arrowRectangle.Height, arrowRectangle.Top + (e.CellBounds.Height - arrowRectangle.Height) / 2); // Draw the arrow to indicate sorting or filtering System.Windows.Forms.VisualStylesArrowDirection direction = System.Windows.Forms.VisualStylesArrowDirection.Down; if (e.State == DataGridViewElementStates.Selected) // If the header is selected { // Draw your arrow e.Graphics.FillPolygon(Brushes.Black, new Point[] { new Point(arrowPoint.X, arrowPoint.Y + 1), new Point(arrowPoint.X + arrowRectangle.Height / 2, arrowPoint.Y + arrowRectangle.Height - 1), new Point(arrowPoint.X + arrowRectangle.Height, arrowPoint.Y) }); // You can add logic to show a dropdown list when the header is clicked } e.Handled = true; } } // You would need to handle the MouseDown event of the DataGridView to show a custom dropdown // when the user clicks on a header with the arrow. ``` 这段代码只是一个展示如何在表头绘制下拉箭头的基础示例。实际上,您需要进一步编写逻辑来处理筛选功能,包括存储筛选条件、更新数据源以及重新绑定数据到DataGridView中。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值