CloverExamplePOS.AlertForm.Show C# (CSharp) Метод

Show() публичный статический Метод

public static Show ( Form toCover, string title, string label ) : void
toCover System.Windows.Forms.Form
title string
label string
Результат void
        public static void Show(Form toCover, string title, string label)
        {
            AlertForm alertForm = new AlertForm(toCover);
            alertForm.Title = title;
            alertForm.Label = label;
            alertForm.Show(toCover);
        }
    }

Usage Example

Пример #1
0
        public static void Show(Form toCover, string title, string label)
        {
            AlertForm alertForm = new AlertForm(toCover);

            alertForm.Title = title;
            alertForm.Label = label;
            alertForm.Show(toCover);
        }
All Usage Examples Of CloverExamplePOS.AlertForm::Show