Eto.Forms.TableLayout.Remove C# (CSharp) 메소드

Remove() 공개 메소드

Remove the specified child control.
public Remove ( Control child ) : void
child Control Child control to remove.
리턴 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);
			}
		}