gpt4 book ai didi

c# - BeginInvoke 失败,因为尚未创建窗口句柄

转载 作者:太空宇宙 更新时间:2023-11-03 18:40:13 26 4
gpt4 key购买 nike

我正在维护一个包含客户信息的程序。它由许多表格组成,每个表格显示数据库中的一些相关信息。执行以下操作后,此错误以单一形式出现

  1. 打开客户搜索表单
  2. 在 customerinfo 表单中随机查看客户 A 的信息
  3. 打开 crm 表单,它会自动显示客户 A。然后通过拖放向他添加一个文件。
  4. 关闭最后两个表格并随机选择客户 B 并执行相同的操作。
  5. 关闭最后两个表单并选择客户 A 并添加一个新文件。错误!!!

这是失败的代码:

private void FireFileCountChanged() {
if (FileCountChanged != null)
BeginInvoke(new DeferEvent(FireFileCountChangedDeferred), 2); // FAILS

“System.Windows.Forms.dll 中发生类型为‘System.InvalidOperationException’的未处理异常

附加信息:在创建窗口句柄之前,无法对控件调用 Invoke 或 BeginInvoke。”

我尝试添加以下内容:

private void FireFileCountChanged() {
if (FileCountChanged != null && this.Handle != null) // CHANGED AND FAILS.
BeginInvoke(new DeferEvent(FireFileCountChangedDeferred), 2);
}

但是 this.handle 给出了:

“this.Handle”引发了“System.ObjectDisposedException”类型的异常,并且“无法访问已释放的对象。\r\n对象名称:‘AttachmentsControl’。”

然后我在方法的第一行添加了 10 秒的超时,但句柄仍然没有创建。当其中一扇 window 关闭时, Handlebars 是否以某种方式被处理掉了?对此可以做些什么?任何帮助表示赞赏。我有点卡住了。

private void FireFileCountChangedDeferred(int repostCount) {
if (FileCountChanged != null) {
if (repostCount > 0) {
//black magic is somehow involved in getting this event to fire *after* the filewatcher reports the change.
System.Threading.Thread.Sleep(10);
BeginInvoke(new DeferEvent(FireFileCountChangedDeferred), repostCount - 1);
} else
FileCountChanged(this, null);
}
}

private void CopyFiles(string[] files, bool reload) {
if (CreatePath()) {
foreach (string src in files) {
try {
string dest = MakeSafeFilename(src);
File.Copy(src, dest);
FireFileCountChanged();
} catch (Exception ex) {
//Util.Print("Copy ex: {0}", ex.Message);
ErrMsg("Error while copying:{1}{0}", ex.Message, environment.NewLine);
}
}
}
}

private void Lstv_DragDrop(object sender, DragEventArgs ea) {
if (m_CanAdd) {
string[] files = GetDraggedFiles(ea);
if (files != null)
CopyFiles(files, true);
else if (OutlookDataObject.HoldsOutlookData(ea) && CreatePath()) {
try {
OutlookDataObject.CopyDroppedFiles(ea, m_Path, OutlookFilenameCallback);
} catch (Exception ex) {
//Util.Print("Copy ex: {0}", ex.Message);
ErrMsg("Error copying from Outlook:{1}{0}", ex.Message, Environment.NewLine);
}
}
}
}

解决方案

private void FireFileCountChanged() {
while (!this.IsHandleCreated) // added
System.Threading.Thread.Sleep(100); //added

if (FileCountChanged != null)
BeginInvoke(new DeferEvent(FireFileCountChangedDeferred), 2);

最佳答案

您需要检查 IsHandleCreated属性,而不是将 Handle 与 null 进行比较。读取 Handle 属性本身被视为 UI 操作。

private void FireFileCountChanged() {
if (FileCountChanged != null && this.IsHandleCreated)
BeginInvoke(new DeferEvent(FireFileCountChangedDeferred), 2);
}

但是,根据您需要采取的重现错误的复杂步骤,我怀疑这里存在一些表单实例重用问题或其他更复杂的问题,而这不仅仅是使对 BeginInvoke 的调用有效。

关于c# - BeginInvoke 失败,因为尚未创建窗口句柄,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9738318/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com