Form.Show冻结窗口,Form.ShowDialog阻止执行.我还有什么其他选择

本文关键字:Form 什么 选择 其他 执行 冻结 Show 窗口 ShowDialog | 更新日期: 2023-09-27 18:29:19

我启动一个搜索,然后在表单中显示该搜索的结果。

如果我使用.Show(),表单将冻结。如果我使用.ShowDialog(),表单会显示出来,但搜索不会完成,因为直到表单关闭,控制才会返回给线程。

一旦表单初始化,.ShowDialog()方法将在第二次调用中工作,因为initialize方法调用else-activate代码。但我希望这能在第一次通话时起作用。

代码如下。

public static void Search(string searchstring)
{
    IntializeSearchResultsForm()
    List<searchitem> templist = searchmethod(searchstring);
    SearchForm.Invoke((MethodInvoker) (() => SearchForm.SetSearchResultsData(tempList)));
}
public static void IntializeSearchResultsForm()
{
    if (SearchForm == null)
    {
        SearchForm = new SearchForm();
        SearchForm.Show(); OR SearchForm.ShowDialog();
    }
    else
    {
        SearchForm.Invoke(new MethodInvoker(SearchForm.Activate));
    }
}

更新更多代码详细信息:

public static List<PricerSearchResultEntry> searchmethod(string dealID)
    {
        List<PricerSearchResultEntry> tempResultsList = new List<PricerSearchResultEntry>();
        foreach (String dir in pricerFolderArray)
        {
            if (Directory.Exists(dir))
            {
                string[] filesList = Directory.GetFiles(dir, "*" + dealID + "*");
                foreach (String file in filesList)
                {
                    if (AppContext.SearchPricersForm.PricersCheckBox)
                    {
                        if (file.Contains("pricer") && !file.Contains("Failed") && !file.Contains("Incomplete"))
                        {
                            tempResultsList.Add(ParseFileString(file));
                        }
                    }                        
                }
            }
        }
        tempResultsList.Sort((x, y) => y.ValuationDate.CompareTo(x.ValuationDate));
        return tempResultsList;
    }
public SearchForm()
    {
        InitializeComponent();
        searchResultsListBox.DisplayMember = "Title";
        searchResultsListBox.ValueMember = "DealID";
        searchResultsListBox.DataSource = searchResultsList;
    }

Form.Show冻结窗口,Form.ShowDialog阻止执行.我还有什么其他选择

如果我使用.Show(),表单将冻结

这表示您的计算使用了阻塞代码。您需要使用非阻塞算法(如async/await)来允许GUI处理消息,或者在后台(也称为助手,也称为工作者)线程上进行计算。