ShowDialog() public static méthode

public static ShowDialog ( IWin32Window parent, string text ) : void
parent IWin32Window
text string
Résultat void
Exemple #1
0
		public static void ShowDialog(IWin32Window parent, string text)
		{
			Dialog d = new Dialog(text);
			d.ShowDialog(parent);
		}
Exemple #2
0
        public static void ShowDialog(IWin32Window parent, string text)
        {
            Dialog d = new Dialog(text);

            d.ShowDialog(parent);
        }