public string PromptPopup(string text, string title, string defaultValue) { using (var ghostForm = new BufermanGhostForm()) { ghostForm.Show(); return(Interaction.InputBox(text, title, defaultValue)); }// TODO (m) replace it with own form and bufer man icon }
private DialogResult _ShowDialogBoxWithBufermanIcon(Func <DialogResult> dialogFunc) { using (var ghostForm = new BufermanGhostForm()) { ghostForm.Show(); return(dialogFunc()); } }