Dev gridview custom statistical row cell color, devgridview

Source: Internet
Author: User

Dev gridview custom statistical row cell color, devgridview

Two steps:
1. register the GridView mdrawfootercell event of the GridView.
2. Modify e. Appearance. ForeColor according to the condition in the event response.
Example:

Public FormMMIRPWTEST () {InitializeComponent (); gridView1.CustomDrawFooterCell + = gridView1_CustomDrawFooterCell;} void gridView1_CustomDrawFooterCell (object sender, DevExpress. xtraGrid. views. grid. footerCellCustomDrawEventArgs e) {switch (e. column. name) {case "MemoEdit": // find the corresponding column Name if (e. info. value. toString (). equals ("2") {e. appearance. foreColor = Color. red;} else {e. appearance. foreColor = Color. green;} break; case "gridColumnNum": // find the corresponding column name var val = 0; if (int. tryParse (e. info. value. toString (), out val) & val <100) {e. appearance. foreColor = Color. red;} else {e. appearance. foreColor = Color. yellow;} break; case "MemoEditEx": // find the corresponding column name e. info. value = e. info. summaryItem. tag; // e. info. displayText = "hello DisplayText"; e. appearance. foreColor = Color. yellow; break; default: break ;}}

 

Effect:

 

I don't know why e. Appearance. BackColor is set to invalid (instead, it is valid in non-statistical rows). I am sorry to inform you of this.

  

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.