Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
[DllImport("user32.dll")] static extern int SetWindowText(IntPtr hWnd, string text);
private **** StartMyNotepad() {
Process p = Process.Start("notepad.exe");
Thread.Sleep(100); // <-- ugly hack
SetWindowText(p.MainWindowHandle, "My Notepad");
}