zoukankan      html  css  js  c++  java
  • Form.ShowDialog(this)

    有时遇到一种情况,.ShowDialog()不显示。也不报错。例如以下:

    <span style="font-size:14px;"> private void button1_Click(object sender, EventArgs e)
            {
                Thread thread = new Thread(show);
                thread.Start();
            }
           void show()
           {
               Control.CheckForIllegalCrossThreadCalls = false;
               //this.Invoke(new Action(() =>
               //{
                   if (saveFileDialog1.ShowDialog() == DialogResult.OK)
                   { }
               //}));
           }</span>
    原因分析:这属于线程间操作的一种异常。界面呈现和新创建的thread分开在两个线程中。在thread线程中

                      不可以进行界面呈现,即显示.ShowDialog();

    解决方法:1:加入參数this。

                            .ShowDialog(IWin32Window owner);    //owner:表示将拥有模式对话框的顶级窗体

    <span style="font-size:14px;"> private void button1_Click(object sender, EventArgs e)
            {
                Thread thread = new Thread(show);
                thread.Start();
            }
           void show()
           {
               Control.CheckForIllegalCrossThreadCalls = false;
               //this.Invoke(new Action(() =>
               //{
                   if (saveFileDialog1.ShowDialog(this) == DialogResult.OK)
                   { }
               //}));
           }</span>

                      2:使用Invoke

            private void button1_Click(object sender, EventArgs e)
            {
                Thread thread = new Thread(show);
                thread.Start();
            }
           void show()
           {
               // Control.CheckForIllegalCrossThreadCalls = false;
               this.Invoke(new Action(() =>
               {
                   if (saveFileDialog1.ShowDialog() == DialogResult.OK)
                   { }
               }));
           }

  • 相关阅读:
    时间复杂度和空间复杂度的故事
    Go -- 并发编程的两种限速方法
    Go -- type 和断言 interface{}转换
    Go -- 实现二叉搜索树
    Go语言程序的状态监控
    Go -- 中开启gctrace
    Go --- GC优化经验
    Mysql 性能优化20个原则(4)
    Mysql 性能优化20个原则(3)
    查看 activex 组件的方法
  • 原文地址:https://www.cnblogs.com/yjbjingcha/p/6753447.html
Copyright © 2011-2022 走看看