Axiom.Samples.SdkTrayManager.DestroyAllWidgetsInTray C# (CSharp) 메소드

DestroyAllWidgetsInTray() 공개 메소드

Destroys all widgets in a tray.
public DestroyAllWidgetsInTray ( TrayLocation trayLoc ) : void
trayLoc TrayLocation
리턴 void
		public void DestroyAllWidgetsInTray( TrayLocation trayLoc )
		{
			while ( !( mWidgets[ (int)trayLoc ].Count == 0 ) )
				DestroyWidget( mWidgets[ (int)trayLoc ][ 0 ] );
		}