예제 #1
0
        public void ShowMessage(string message, string group, MessageType type)
        {
            MessageLabel.Text = message;
            MessageLabel.BackColor = type.GetColor();

            if (type == MessageType.Success)
            {
                this.Close();
            }
        }
예제 #2
0
 public void ShowMessage(string message, string group, MessageType type)
 {
     this.StatusTextLabel.Text = message;
     this.StatusPictureBox.Image = ImageHelper.GetSolidImage(type.GetColor(), DefaultIconSize);
 }