4

我正在将 Visual Studio 2008、.net Framework 3.5 用于我正在开发的 Windows 窗体客户端-服务器应用程序。当我运行程序并尝试打印时,出现了一个奇怪的错误。打印对话框打开,但我必须单击确定按钮两次才能工作。第二次点击后,它工作正常,没有错误。当我设置断点时: if (result == DialogResult.OK) ,直到第二次单击才会触发断点。这是代码:

private void tbPrint_Click(object sender, EventArgs e)
{
    try
    {
        printDialog1.Document = pDoc;

        DialogResult result = printDialog1.ShowDialog();

        if (result == DialogResult.OK)
        {
            pDoc.PrinterSettings.PrinterName = printDialog1.PrinterSettings.PrinterName;
            pDoc.Print();
        }
        ...

这让我发疯了,我看不到任何会干扰它的东西。

4

3 回答 3

1

OpenFileDialog我在使用C#/WinForms中的“第一个工具条单击无法识别”时遇到了这个问题。经过大量的诅咒和谷歌搜索,我做到了:

  1. toolstrip1_Click

    private void toolStrip1_Click(object sender, EventArgs e)
    {
      this.Validate();
    }
    
  2. 在使用调用的函数中OpenFileDialog

    private void locateMappingToolStripMenuItem_Click(object sender, EventArgs e)
    {
      OpenFileDialog dg = new System.Windows.Forms.OpenFileDialog();
      if (dg.ShowDialog() == DialogResult.OK)
      {
        fileLocation = Path.GetDirectoryName(dg.FileName);
        try
        {
          if (LoadData())
          {
            //Enable toolbar buttons
            toolStripButton3.Enabled = true;
            toolStripButton5.Enabled = true;
            toolStripButton1.Enabled = true;
            toolStripButton2.Enabled = true;
            searchParm.Enabled = true;
            toolStripButton4.Enabled = true;
            toolStripButton6.Enabled = true;
            exitToolStripMenuItem.Enabled = true;
            EditorForm.ActiveForm.TopLevelControl.Focus();
          }
        }
        catch (Exception exx) 
        {
          MessageBox.Show(exx.Message + Environment.NewLine + exx.InnerException);
        }
      }
    }
    

两行似乎是关键:

  • 关闭时OpenFileDialog,需要将焦点重置到主窗口 ( EditorForm.ActiveForm.TopLevelControl.Focus();)
  • 单击工具条按钮时,工具条会自我验证 ( this.Validate()) 并识别鼠标事件。
于 2012-05-08T05:38:11.720 回答
1

我使用计时器实现了它。

将计时器放到包含工具条的表单上,然后将其转换为单次计时器,延迟时间为 1 毫秒。注意:计时器最初必须将“启用”设置为“假”

private void toolStripBtnPrint_Click(object sender, EventArgs e)
{
   timer1.Interval = 1; // 1ms
   timer1.Enabled = true;
}

创建计时器滴答事件处理程序

private void timer1_Tick(object sender, EventArgs e)
{
    timer1.Enabled = false;
    PrintDialog printDialogue=new PrintDocument();        
    //Do your initialising here
    if(DialogResult.OK == printDialogue.ShowDialog())
    {
        //Do your stuff here
    }
}

它可能很脏,但它让我摆脱了困境。高温高压

于 2017-06-24T17:17:46.817 回答
0

也许这是一个与此类似的问题: http: //social.msdn.microsoft.com/Forums/en-US/winforms/thread/681a50b4-4ae3-407a-a747-87fb3eb427fd

于 2010-04-15T21:13:00.920 回答