DragDrop registration did not succeed

前端 未结 9 1935
时光取名叫无心
时光取名叫无心 2021-02-07 08:14

System.InvalidOperationException: DragDrop registration did not succeed. ---> System.Threading.ThreadStateException:

What does this except

9条回答
  •  旧时难觅i
    2021-02-07 08:33

    function abc
    {
                Thread t = new Thread(new ThreadStart(xyz));
                t.SetApartmentState(ApartmentState.STA);
                t.Start( );    
    }
    function xyz
    {
     the code of Windows form..or whatever which is causing the error
    }
    

提交回复
热议问题