ShowDialog() public static method

public static ShowDialog ( IWin32Window parent, string text ) : void
parent IWin32Window
text string
return void
コード例 #1
0
ファイル: Dialog.cs プロジェクト: pmprog/OpenXCOM.Tools
		public static void ShowDialog(IWin32Window parent, string text)
		{
			Dialog d = new Dialog(text);
			d.ShowDialog(parent);
		}
コード例 #2
0
ファイル: Dialog.cs プロジェクト: ratzlaff/XCom-tools
        public static void ShowDialog(IWin32Window parent, string text)
        {
            Dialog d = new Dialog(text);

            d.ShowDialog(parent);
        }