博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DragDrop registration did not succeed. (摘录)
阅读量:5051 次
发布时间:2019-06-12

本文共 511 字,大约阅读时间需要 1 分钟。

You've been tinkering with threading.  Drag+Drop doesn't like threads.  It will only work on threads that are properly initialized with Thread.SetApartmentState() to select STA and that pump a message loop with Application.Run() or Form.ShowDialog().

1、加[STAThread]

2、Thread t = new Thread(new ThreadStart(A));

   t.SetApartmentState(ApartmentState.STA);
   t.Start( );

   并不能加[STAThread]

有时加[STAThread]这个都会出现问题,不知道是不是Application.Run()上没有做好,但用2方法很少出问题。

 

转载于:https://www.cnblogs.com/Yjianyong/archive/2012/01/10/2317821.html

你可能感兴趣的文章
java @SuppressWarnings注解
查看>>
C语言位域
查看>>
Python量化教程 常用函数
查看>>
webpack笔记一 起步
查看>>
docker容器启动设置固定IP
查看>>
安装python爬虫scrapy踩过的那些坑(转载+整理)
查看>>
VC++ 的MFC 和ATL 及COM 是什么?
查看>>
MySQL Explain 总结
查看>>
ELK批量删除索引
查看>>
团队作业 团队组织方式讨论
查看>>
图片加载
查看>>
numpy学习小结
查看>>
ios单例模式-全局静态类
查看>>
我的世界2
查看>>
jquery_扩展
查看>>
Kubernetes Master节点灾备恢复操作指南---升级版
查看>>
nginx访问jupyter
查看>>
四大主流云平台对比--CloudStack, Eucalyptus, vCloud Director和OpenStack。
查看>>
python String模块
查看>>
名声远扬的EXCHANGE2010,有多少内存我用不完?
查看>>