System.Windows.Forms.DataGridViewButtonCell.Init C# (CSharp) Method

Init() public method

public Init ( ) : void
return void
		void Init()
		{
			this.BezelStyle = NSBezelStyle.Rounded;
			this.Activated += delegate(object sender, EventArgs e) {
				if (Click != null)
					Click (sender, e);
			};
		}
		
DataGridViewButtonCell