Axiom.Samples.SdkTrayManager.ShowCursor C# (CSharp) Метод

ShowCursor() публичный Метод

Displays specified material on cursor, or the last material used if

none specified. Used to change cursor type.
public ShowCursor ( String materialName ) : void
materialName String
Результат void
		public void ShowCursor( String materialName )
		{
			if ( materialName != String.Empty )
				CursorImage.MaterialName = materialName;

			if ( !cursorLayer.IsVisible )
			{
				cursorLayer.Show();
				RefreshCursor();
			}
		}

Same methods

SdkTrayManager::ShowCursor ( ) : void