System.Windows.Forms.NSViewExtender.BringToFront C# (CSharp) 메소드

BringToFront() 공개 정적인 메소드

public static BringToFront ( this theView ) : void
theView this
리턴 void
		public static void BringToFront(this NSView theView)
		{
			if(theView.Superview == null)
				return;
			theView.Superview.BringSubviewToFront(theView);
		}
	}