1

我创建了一个带有打印预览的打印工具。打印预览是按表格制作的。我想让用户在预览表单未关闭时单击打印按钮打印文档。

如何返回DialogResult.OK打印工具以防止表单消失?

4

2 回答 2

1

你不能。

DialogResult与模态窗口一起使用。模态窗口基本上劫持了底层的 UI 消息循环,这使得它们相对于调用者是同步的。

如果您需要打印预览来启动打印,同时保持对话框模式,只需给它一种启动打印的方法,而不是让调用者对返回的DialogResult. 可能最简单的方法是简单地将Action委托传递给对话框 - 当按下 OK 时,您调用委托。

于 2015-09-23T14:29:11.933 回答
0

在 C# 中没有像 i 现在这样的功能。但是,您可以创建一个自定义对话框来执行此操作。

public static class MyDialog
{
    public static int ShowDialog(string text, string caption)
    {
        Form prompt = new Form();
        prompt.Width = 500;
        prompt.Height = 100;
        prompt.Text = caption;
        Label textLabel = new Label() { Left = 50, Top=20, Text=text };
        NumericUpDown inputBox = new NumericUpDown () { Left = 50, Top=50, Width=400 };
        Button confirmation = new Button() { Text = "Ok", Left=350, Width=100, Top=70 };

        confirmation.Click += (sender, e) => { //YOUR FUNCTIONALITY };

        prompt.Controls.Add(confirmation);
        prompt.Controls.Add(textLabel);
        prompt.Controls.Add(inputBox);
        prompt.ShowDialog();

        return (int)inputBox.Value;
    }
}

然后使用以下命令调用它:

 int MyDialogValue = MyDialog.ShowDialog("Test", "123");
于 2015-09-23T14:28:53.463 回答