System.Windows.Forms.NSViewExtender.BringSubviewToFront C# (CSharp) Méthode

BringSubviewToFront() public static méthode

public static BringSubviewToFront ( this superView, NSView theView ) : void
superView this
theView NSView
Résultat void
		public static void BringSubviewToFront(this NSView superView, NSView theView)
		{
			if(theView == null || !superView.Subviews.Contains(theView))
				return;
			theView.RemoveFromSuperview();
			superView.AddSubview(theView);
		}