public static void ShowDialog(string caption) { new System.Threading.Tasks.Task(() => { var form = new KeyboardDialog { Text = caption }; form.ShowDialog(); }).Start(); }
public static void ShowDialog(string caption, Point location, Size size) { new System.Threading.Tasks.Task(() => { var form = new KeyboardDialog { Text = caption, ShownLocation = location, ClientSize = size }; form.ShowDialog(); }).Start(); }