Click here to Skip to main content
Licence Zlib
First Posted 7 Sep 2007
Views 71,934
Downloads 924
Bookmarked 97 times

Cell Blink for DataGridView

By | 4 May 2008 | Article
An article on adding a cell blink feature for DataGridView
Screenshot - DataGridViewCellBlink.jpg

Introduction

After reading many articles on The Code Project, I realized that it's my time to contribute. Few months ago, I came across a requirement for cells in a DataGridView control to blink when the cell value changed. The code presented here can be applied to any other grid.

The blinking of the grid cell is achieved in the following manner. When we update the value of a cell, we also change the background color of that cell to a blink color. To restore the cell background color to its original value, we run a background thread that iterates through a list of cells that are blinking and resets them to their original non blinking state.

The Code

The sample project has two functions. The first function DataInputThreadFunc() is used to generate random values to be filled / updated in the grid. The second function GridBlinkThreadFunc() is used to restore the cells to the non blink state.

Let's take a look at the first function DataInputThreadFunc():

private void DataInputThreadFunc()
{
    Random rand = new Random();
    while (true)
    {
        if (dataGridView1.IsDisposed)
            break;

        CellData data = new CellData();
        data.Row = rand.Next(0, 7);
        data.Col = rand.Next(0, 3);
        data.Time = DateTime.Now;

        int value = rand.Next(0, 101);

        dataGridView1.Invoke((MethodInvoker)delegate()
        {
            dataGridView1.Rows[data.Row].Cells[data.Col].Value = value;
            dataGridView1.Rows[data.Row].Cells[data.Col].Style
              .BackColor = Color.Salmon;
        });

        lock (_blinkData)
        {
            _blinkData.Add(data);
        }

        Thread.Sleep(1000);
    }
}

The function uses a while (true) loop as it's a background thread and will be shutdown automatically when the application is closed. if (dataGridView1.IsDisposed) check is done to make sure we do not call dataGridView1.Invoke() on a disposed object. This can happen when the user closes the application.

Next, we initialize an object of the class CellData to store the blink data:

class CellData
{
     public int Row;
     public int Col;
     public DateTime Time;
}

This class is used to store the row number, column number and the time when the value changed.

Next we use dataGridView1.Invoke() to make a call to the user interface thread and set the grid properties. We save the blink data in a generic list to be used later by the blink thread function. Since the list is altered by more than one thread, we synchronize access by locking the list on each access.

Now let's take a look at the blink thread function:

private void GridBlinkThreadFunc()
{
    while (true)
    {
        // Make a copy to avoid invalid operation exception
        // while iterating through the map
        List<CellData> tempBlinkData;
        lock (_blinkData)
        {
            tempBlinkData = new List<CellData>(_blinkData);
        }

        foreach (CellData data in tempBlinkData)
        {
            TimeSpan elapsed = DateTime.Now - data.Time;
            if (elapsed.TotalMilliseconds > 500) // 500 is the Blink delay
            {
                if (dataGridView1.IsDisposed)
                    return;

                dataGridView1.BeginInvoke((MethodInvoker)delegate()
                {
                    dataGridView1.Rows[data.Row].Cells[data.Col]
                      .Style.BackColor = dataGridView1.Columns[data.Col]
                      .DefaultCellStyle.BackColor;
                });

                lock (_blinkData)
                {
                    _blinkData.Remove(data);
                }
            }
        }

        Thread.Sleep(250); // Blink frequency
    }
}

At the very beginning, we make a copy of the _blinkData list. This helps us to modify the list while we iterate through the contents of the temporary copy. For each cell we find in the list, we check to make sure whether the blink time has elapsed or not. In this case, the blink time is 500 milliseconds. Any cell that has elapsed the blink time gets its background color reset to the default cell style background color and is removed from the list.

Again we make sure that we set the grid property only in the user interface thread. In addition, we lock the _blinkData list before altering it. Thread.Sleep(250) is the frequency with which we go through the list to turn off the cells. Ideally, it should be half the value of blink delay.

Points of Interest

You will notice that this code can be applied to any grid. This code can also be hidden in a class that extends a DataGridView control.

One thing I love about .NET 2.0 is dataGridView1.Invoke((MethodInvoker)delegate(). This statement lets you get away from writing a function and declaring a delegate.

A good point was made by "Kristof Verbiest" about the use of BeginInvoke() instead of Invoke(). The GridBlinkThreadFunc() uses BeginInvoke() to avoid unnecessary context switch.

History

  • 09/06/2007: First published
  • 09/11/2007: Changed the GridBlinkThreadFunc() to use BeginInvoke() instead of Invoke()
  • 05/02/2008: Edited the "Points of Interest" section

License

This article, along with any associated source code and files, is licensed under The zlib/libpng License

About the Author

Ram Mohan Raja

Software Developer (Senior)

India India

Member

Nothing to brag about! Just another passionate software developer!Smile | :)
 
Work to make a living, don't live to work!

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralPerformance issue PinmemberHoa Le15:19 10 Nov '08  
GeneralRe: Performance issue PinmemberRaghavan Ram Raja3:21 14 Nov '08  
GeneralRe: Performance issue PinmemberHoa Le17:27 20 Nov '08  
GeneralVB.NET Version Here (Visual Studio 2005) Pinmembergratro2:26 14 Oct '08  
GeneralRe: VB.NET Version Here (Visual Studio 2005) PinmemberRaghavan Ram Raja3:07 14 Oct '08  
GeneralBlink PinmembertxALI4:16 29 Jan '08  
GeneralSome comments PinmemberKristof Verbiest20:16 10 Sep '07  
GeneralRe: Some comments PinmemberRam Mohan Raja4:42 11 Sep '07  
GeneralRe: Some comments PinmemberKristof Verbiest21:11 11 Sep '07  
GeneralRe: Some comments PinmemberRam Mohan Raja4:46 12 Sep '07  
GeneralRe: Some comments PinmemberKristof Verbiest21:06 12 Sep '07  
GeneralRe: Some comments PinmemberRam Mohan Raja4:05 13 Sep '07  
GeneralRe: Some comments PinmemberKristof Verbiest4:40 13 Sep '07  
GeneralRe: Some comments [modified] PinmemberRam Mohan Raja5:40 13 Sep '07  
GeneralRe: Some comments Pinmemberradioman.lt@gmail.com0:26 31 Oct '07  
GeneralRe: Some comments PinmemberRam Mohan Raja3:33 31 Oct '07  
Your welcome!

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 4 May 2008
Article Copyright 2007 by Ram Mohan Raja
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid