entity.MetaEditor2.MetaEditorControlPage.showInfoBox C# (CSharp) Метод

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

Displays an info pane and keeps it open for an amount of time.
public showInfoBox ( string info, int time ) : void
info string The text to display in the Info Pane
time int The time to display the info pane, in milliseconds
Результат void
        public void showInfoBox(string info, int time)
        {
            panelInfoPane.Text = info;

            panelInfoPane.Visible = true;
            tmr_MEControlPage.Stop();
            if (time > 0)
            {
                tmr_MEControlPage.Interval = time;
                tmr_MEControlPage.Start();
            }
        }