Eto.Forms.TableLayout.Remove C# (CSharp) Method

Remove() public method

Remove the specified child control.
public Remove ( Control child ) : void
child Control Child control to remove.
return void
		public override void Remove(Control child)
		{
			var cell = Rows.SelectMany(r => r.Cells).FirstOrDefault(r => r.Control == child);
			if (cell != null)
			{
				cell.SetControl(null);
				Handler.Remove(child);
				RemoveParent(child);
			}
		}