zoukankan      html  css  js  c++  java
  • winform 制定DataGridViewTextColumn列(更改DataGridView的Cell的状态很有用)

    先自定义一个类 继承DataGridViewTextBoxCell

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Windows.Forms;
    using System.Drawing;
    
    namespace com.Threes.CustomControl
    {
        public class DataGridViewBooleanCell : DataGridViewTextBoxCell
        {
            protected override void Paint(Graphics graphics, Rectangle clipBounds, Rectangle cellBounds, int rowIndex,
                DataGridViewElementStates cellState, object value, object formattedValue, string errorText,
            DataGridViewCellStyle cellStyle, DataGridViewAdvancedBorderStyle advancedBorderStyle, DataGridViewPaintParts paintParts)
            {
                // Call the base class method to paint the default cell appearance.
                base.Paint(graphics, clipBounds, cellBounds, rowIndex, cellState, value, "", errorText, cellStyle, advancedBorderStyle, paintParts);
                
                if (value is Boolean)
                    if ((bool)value == true)
                    {
                        graphics.DrawString("Y", cellStyle.Font, new SolidBrush(Color.Blue), cellBounds.X, cellBounds.Y);
                    }
                    else
                    {
                        graphics.DrawString("N", cellStyle.Font, new SolidBrush(Color.Red), cellBounds.X, cellBounds.Y);
                    }
                else if (value is int)
                {
                    int v = (int)value;
                    if (v == 1)
                    {
                        graphics.DrawString("", cellStyle.Font, new SolidBrush(Color.Blue), cellBounds.X, cellBounds.Y);
                    }
                    else if (v == 0)
                    {
                        graphics.DrawString("", cellStyle.Font, new SolidBrush(Color.Red), cellBounds.X, cellBounds.Y);
                    }
                    else
                    {
                        graphics.DrawString("人妖", cellStyle.Font, new SolidBrush(Color.Green), cellBounds.X, cellBounds.Y);
                    }
                }
            }
    
        }
    
    }

    再自定义一个类 继承DataGridViewColumn

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Windows.Forms;
    
    namespace com.Threes.CustomControl
    {
        public class DataGridViewBooleanColumn : DataGridViewColumn
        {
            public DataGridViewBooleanColumn()
            {
                this.CellTemplate = new DataGridViewBooleanCell();
            }
        }
    }

    借鉴与:http://www.mianwww.com/html/2009/06/3345.html

  • 相关阅读:
    [国嵌攻略][097][U-Boot新手入门]
    [国嵌攻略][070-095][Linux编程函数手册]
    自己写的切图工具(转)
    【总结整理】关于切图
    【总结整理】冯诺依曼体系结构
    【总结整理】面试需了解
    【总结整理】如何解决跨域问题
    【总结整理】WebGIS基础
    【总结整理】空间数据库基础
    【总结整理】WMS、WMTS、WFS
  • 原文地址:https://www.cnblogs.com/jcdd-4041/p/3431037.html
Copyright © 2011-2022 走看看