Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个小程序,我希望在鼠标悬停时显示一个 jPanel。那部分被覆盖了。我真正希望的是 jPanel 出现在当前鼠标位置。
我怎样才能做到这一点?
我正在使用 NetBeans,如果您认为它是相关的。:)
private void yourMouseMoveMethod(java.awt.event.MouseEvent evt) { yourJPanel.setLocation(evt.getX(),evt.getY()); }
如果您不希望它随光标移动,则必须为其添加一些条件