我需要在表单上显示鼠标坐标X和Y,但是即使我把鼠标移动到屏幕周围,也不仅仅是鼠标区域。
第二,如何使用string.format在标签上实时显示x和y的坐标。
我使用这个方法来获取坐标,但是我不确定它是否是屏幕的坐标,它是否会显示鼠标光标的位置,即使我在屏幕上到处移动鼠标(监视器)。
public static Point GetMousePositionWindowsForms()
{
System.Drawing.Point point = Control.MousePosition;
return new Point(poi
我想通过鼠标点击在我的应用程序中设置点。我使用JFreeChart和在ChartPanel鼠标监听器中使用。如下所示:
panel.addChartMouseListener(new ThisMouseListener());
和我的鼠标监听器ThisMouseListener() (它还没有完成):
class ThisMouseListener implements ChartMouseListener{
@Override
public void chartMouseClicked(ChartMouseEvent event) {
int x = eve
这是我想要做的:
使用服务器端的applet来绘制客户端的applet。
我的想法是只发送鼠标坐标(当鼠标被按下并拖动时),客户端将使用这些坐标进行绘制。
然而,当鼠标被拖动时,我不知道如何发送坐标。
鼠标按下时的代码:
public boolean mouseDown(Event e, int x, int y) {
lastx = x; lasty = y; // Remember where the click was
return true;
当鼠标被拖动时的代码:
public boolean mouseDrag(Event e,