public void myMethod(string test)
{
string mytext = "DataGridViewHitTestType"; // the text u want to copy
Clipboard.Clear();//Clearing the clipboard
Clipboard.SetText(test);
}
public int copycodetoboard(string copy)
{
Thread t = new Thread(() => myMethod(copy));
t.ApartmentState = ApartmentState.STA;
t.Start();
return 1;
}
我copycodetoboard("")
在按钮单击中调用该函数
在本地可以正常使用,但是上传后就不行了