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()); }
カーソルで毎回移動したくない場合は、条件を追加する必要があります