如何调用函数?
我需要获取表单中单击时鼠标的位置,并保存 x
和 y
坐标。我做了这个简单的函数:
public void kokot (MouseEventArgs e)
{
x = e.X;
y = e.Y;
this.Invalidate();
}
我该如何调用它?当我尝试 kokot() 时,它当然不起作用,因为没有参数。那么在这种情况下我应该使用什么参数呢?预先感谢您的任何帮助。
I need to get the position of the mouse on click in a form, and save the x
and y
coordinates. I made this simple function:
public void kokot (MouseEventArgs e)
{
x = e.X;
y = e.Y;
this.Invalidate();
}
How can I call it? When I try kokot()
it doesn't work of course, because there are no arguments. So what arguments should I use in this case? Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
向接受两个整数的函数添加重载:
然后从代码中的任何位置调用它:
Add overload to the function that accept two integers:
Then call it like this from anywhere in your code:
您需要订阅表单 MouseClick 事件。
You need to subcsribe to the forms MouseClick Event.