Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ===++===
- //
- // OrtizOL
- //
- // ===--===
- /*============================================================
- //
- // Clase: ControlMensajes.cs
- //
- // Original en: http://goo.gl/U0IRiq
- //
- // Propósito: Diseñar el control para la visualización de
- // mensajes del estado del juego.
- //
- ============================================================*/
- using System;
- using System.ComponentModel;
- using System.Drawing;
- using System.Windows.Forms;
- namespace Triqui.GUI
- {
- /// <summary>
- /// Clase que representa el visor de mensajes de estado del juego.
- /// </summary>
- public partial class ControlMensajes : UserControl
- {
- #region Constructores
- /// <summary>
- /// Crea una instancia del visor de mensajes.
- /// </summary>
- public ControlMensajes()
- {
- InitializeComponent();
- }
- #endregion
- #region Métodos
- /// <summary>
- /// Muestra el estado actual del juego.
- /// </summary>
- /// <param name="mensaje">Mensaje de estado.</param>
- public void MostrarMensaje(string mensaje)
- {
- lblMensaje.Text = mensaje;
- }
- #endregion
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement