Click here to Skip to main content
15,892,298 members
Articles / Programming Languages / XML

DataGridView Event Sequences

Rate me:
Please Sign up or sign in to vote.
4.76/5 (34 votes)
3 Jan 2019CPOL7 min read 195.7K   11.5K   89  
A useful tool to help you understand DataGridView events as you navigate the DataGridView
using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace DgvEvents
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United Kingdom United Kingdom
A developer of Windows software in the telecoms and manufacturing sectors for over 20 years. Prior to that I was developing real-time embedded systems in the telecoms and defence industries.

Comments and Discussions