0

所以,这里是这样的场景:我在一个框架中有一个基本的 JTextField,并希望给用户选项,右键单击文本字段,然后像在 Eclipse 或 Microsoft Word 中一样,在弹出菜单中给他复制的选项他已经创建的文本或粘贴文本。如何制作这种特殊的右键单击事件?

这是该程序的简短版本,我到目前为止:

import java.awt.*;
import javax.swing.*;

public class TestClass extends JFrame{

    private JFrame frame;
    private JTextField textField;

    /**
     * Main method
     * @param args
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    TestClass window = new TestClass();
                    window.frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     * Create the window
     */
    public TestClass() {
        initialize();
    }

    /**
     * Initialize components (TextField)
     */
    private void initialize() {
        frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setBounds(100, 100, 200, 100);

        textField = new JTextField();
        textField.setText("TextField");
        textField.setFont(new Font("Arial", Font.PLAIN, 20));
        frame.add(textField);
    }
}
4

2 回答 2

1

您应该使用鼠标事件为您注册一个事件,然后您必须使用一个弹出菜单来在您单击时弹出到目前为止这里是一个示例代码!

          privatevoidformMouseClicked(java.awt.event.MouseEventevt){                                  

              if (evt.isPopupTrigger()){
                  pop.show(evt.getComponent(),evt.getX(), evt.getY());
              }

          }     
于 2013-04-26T11:29:42.350 回答
0
           private void textfiledMousePressed(java.awt. event.MouseEvent evt) {

           if (evt.getModifiers() == MouseEvent.BUTTON3_MASK){

           p.show(evt.getComponent(), evt.getX(), evt.getY());

           } 

            }

这也可以通过右键单击来完成

于 2013-04-28T06:00:28.287 回答