Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Datagrid row colouring

Datagrid row colouring

Scheduled Pinned Locked Moved C#
databasetutorial
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    P Offline
    painlessprod
    wrote on last edited by
    #1

    I have a datagrid that is bound to a collection. I have events that fire on individual items in that collection. I would like to see an example with a form that has a datagrid, a button that says paint red and a textbox that specifies the index of the dg to paint

    B 1 Reply Last reply
    0
    • P painlessprod

      I have a datagrid that is bound to a collection. I have events that fire on individual items in that collection. I would like to see an example with a form that has a datagrid, a button that says paint red and a textbox that specifies the index of the dg to paint

      B Offline
      B Offline
      Barm
      wrote on last edited by
      #2

      I have the following inside one of my programs. where I have alternate colours for the datagrid rows. I donno if this would help, hope it does. if(i%2 == 0) { DataGrid1.Items[i].ForeColor = System.Drawing.Color.Black; DataGrid1.Items[i].BackColor = System.Drawing.Color.LightBlue; } else { DataGrid1.Items[i].ForeColor = System.Drawing.Color.Black; DataGrid1.Items[i].BackColor = System.Drawing.Color.LightSteelBlue; } Thomas

      P 1 Reply Last reply
      0
      • B Barm

        I have the following inside one of my programs. where I have alternate colours for the datagrid rows. I donno if this would help, hope it does. if(i%2 == 0) { DataGrid1.Items[i].ForeColor = System.Drawing.Color.Black; DataGrid1.Items[i].BackColor = System.Drawing.Color.LightBlue; } else { DataGrid1.Items[i].ForeColor = System.Drawing.Color.Black; DataGrid1.Items[i].BackColor = System.Drawing.Color.LightSteelBlue; } Thomas

        P Offline
        P Offline
        painlessprod
        wrote on last edited by
        #3

        i think that only works with a datagrid in in asp.net

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups