Canguro.Controller.CommandServices.Print C# (CSharp) 메소드

Print() 공개 메소드

Method to allow commands to print messages on the DirectX panel to inform the user in a not-so-invasive way.
public Print ( string message ) : void
message string The text message to display
리턴 void
        public void Print(string message)
        {
            // TODO: Esto se debe de cambiar para desplegar el texto en el Panel DirectX
            controller.MainFrm.SetStatusLabel(message);
        }