java弹出窗放textarea_java中窗体上有一个Button和一个TextArea当鼠标经过按钮上的某一点时在文本框中输出该点的坐标事件...

展开全部

你好!只需要在按钮上32313133353236313431303231363533e59b9ee7ad9431333264636163添加鼠标监听器监听鼠标经过事件就可以了

核心代码:

private void btnMouseMoved(java.awt.event.MouseEvent evt) {

textArea.append("当前鼠标经过"+evt.toString()+'\n');

textArea.append("当前鼠标经过"+evt.getPoint().toString()+'\n');

}

完整实例:

/*

* TestMouseCross.java

*

* Created on 2011-5-8, 11:56:21

*/

package test;

/**

*

* @author 叶科良

*/

public class TestMouseCross extends javax.swing.JFrame {

/** Creates new form TestMouseCross */

public TestMouseCross() {

initComponents();

}

/** This method is called from within the constructor to

* initialize the form.

* WARNING: Do NOT modify this code. The content of this method is

* always regenerated by the Form Editor.

*/

@SuppressWarnings("unchecked")

// 

private void initComponents() {

btn = new javax.swing.JButton();

jScrollPane1 = new javax.swing.JScrollPane();

textArea = new javax.swing.JTextArea();

setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

setTitle("点击获取坐标事件");

btn.setText("经过获取坐标事件及位置");

btn.addMouseMotionListener(new java.awt.event.MouseMotionAdapter() {

public void mouseMoved(java.awt.event.MouseEvent evt) {

btnMouseMoved(evt);

}

});

textArea.setColumns(15);

textArea.setRows(5);

jScrollPane1.setViewportView(textArea);

javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());

getContentPane().setLayout(layout);

layout.setHorizontalGroup(

layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)

.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 400, Short.MAX_VALUE)

.addGroup(layout.createSequentialGroup()

.addGap(128, 128, 128)

.addComponent(btn)

.addContainerGap(107, Short.MAX_VALUE))

);

layout.setVerticalGroup(

layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)

.addGroup(layout.createSequentialGroup()

.addGap(44, 44, 44)

.addComponent(btn)

.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)

.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 227, Short.MAX_VALUE))

);

pack();

}// 

private void btnMouseMoved(java.awt.event.MouseEvent evt) {

textArea.append("当前鼠标经过"+evt.toString()+'\n');

textArea.append("当前鼠标经过"+evt.getPoint().toString()+'\n');

}

/**

* @param args the command line arguments

*/

public static void main(String args[]) {

java.awt.EventQueue.invokeLater(new Runnable() {

public void run() {

new TestMouseCross().setVisible(true);

}

});

}

// Variables declaration - do not modify

protected javax.swing.JButton btn;

protected javax.swing.JScrollPane jScrollPane1;

protected javax.swing.JTextArea textArea;

// End of variables declaration

}

43f3af8d92e66199db1e7807a92be8ce.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值