Bloom.MiscUI.TipDialog.Show C# (CSharp) Method

Show() public static method

public static Show ( string message ) : void
message string
return void
        public static void Show(string message)
        {
            using (var d = new TipDialog(message, "Tip", SystemIcons.Information.ToBitmap()))
                d.ShowDialog();
        }