程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> Form.ShowDialog(this)

Form.ShowDialog(this)

編輯:關於C++

有時遇到一種情況,.ShowDialog()不顯示,也不報錯;如下:

 

 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)
               { }
           //}));
       }
原因分析:這屬於線程間操作的一種異常。界面呈現和新創建的thread分開在兩個線程中。在thread線程中

 

不能夠進行界面呈現,即顯示.ShowDialog();

解決方法:1:添加參數this。

.ShowDialog(IWin32Window owner); //owner:表示將擁有模式對話框的頂級窗口

 

 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)
               { }
           //}));
       }

 

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)
               { }
           }));
       }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved