Click here to Skip to main content
15,883,705 members
Articles / Programming Languages / C#

SourceGrid - Open Source C# Grid Control

Rate me:
Please Sign up or sign in to vote.
4.94/5 (429 votes)
4 Aug 2013MIT24 min read 4.8M   23.7K   1K  
SourceGrid is a free open source grid control. Supports virtual grid, custom cells and editors, advanced formatting options and many others features
using System;

namespace SourceGrid2
{
	/// <summary>
	/// A class derived from ContextMenu but that is syncronized with the grid using the ContextMenuStyle property
	/// </summary>
	[System.ComponentModel.ToolboxItem(false)]
	public class GridContextMenu : System.Windows.Forms.ContextMenu
	{
		private GridVirtual m_Grid;
		/// <summary>
		/// Constructor
		/// </summary>
		/// <param name="p_Grid">The grid to sync with</param>
		public GridContextMenu(GridVirtual p_Grid)
		{
			m_Grid = p_Grid;
		}

		/// <summary>
		/// Grid to sync
		/// </summary>
		public GridVirtual Grid
		{
			get{return m_Grid;}
		}

		/// <summary>
		/// Fired when the contextmenu is showed
		/// </summary>
		/// <param name="e"></param>
		protected override void OnPopup(EventArgs e)
		{
			this.MenuItems.Clear();

			base.OnPopup (e);

			MenuCollection l_Menus = m_Grid.GetGridContextMenus();
			for (int i = 0; i < l_Menus.Count; i++)
			{
				MenuItems.Add(l_Menus[i]);
			}
		}

	}
}

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 MIT License


Written By
Software Developer
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions