这可能真的很容易,但我仍然无法弄清楚。我试图在光标的位置(双击)生成我的 Windows 窗体。我能够得到我需要的一切(
cursorXY ,
clickhandler )
,但我不知道如何在我之前或之后编辑表单Show()
。
public Form2(int cursorX, int cursorY)
{
Location = new Point(cursorX, cursorY);
...
这不起作用,我知道,因为它指的是它在容器中的位置。我通过form.Location
在调试时捕获来收集它(它总是 0,0)。所以编辑Location
到目前为止没有做任何事情。我可以移动容器或窗口吗?