System.Windows.Forms.Control.FindContainer C# (CSharp) 메소드

FindContainer() 개인적인 메소드

private FindContainer ( Control c ) : ContainerControl
c Control
리턴 ContainerControl
		internal ContainerControl FindContainer (Control c)
		{
			while ((c != null) && !(c is ContainerControl))
				c = c.Parent;
			return c as ContainerControl;
		}
Control