gpt4 book ai didi

java - 从 ActionPerformed 中的另一个类导入代码

转载 作者:太空宇宙 更新时间:2023-11-04 07:29:22 25 4
gpt4 key购买 nike

我得到了这个带有按钮的 JFrame。
我添加了 ActionPerformed 添加,就像它应该的那样。
但我的一个按钮执行很长的代码,我想将其移动到一个单独的类,然后将其导入到 AP()。

这可能吗? (按钮名称的含义,JButton 之类的东西......)。

公共(public)类 Frame 扩展 JFrame{

/* -------------------------------------------------------------------- */

public JButton News;

public boolean TP_B = false,
MC_B = false;

public JEditorPane TechPack_JEP,
Minecraft_JEP;

public JScrollPane TechPack_JSP,
Minecraft_JSP;

public void News_Button(){
Icon News_img = new ImageIcon(this.getClass().getResource("/onglet/News.png"));
Icon News_select_img = new ImageIcon(this.getClass().getResource("/onglet/News_Select.png"));

News = new JButton(News_img);
News.setRolloverIcon(News_select_img);
News.setOpaque(false);
News.setContentAreaFilled(false);
News.setBorderPainted(false);
News.setFocusPainted(false);

Insets insets_1 = News.getInsets();
Dimension size_1 = News.getPreferredSize();
News.setBounds(-34 + insets_1.left, -10 + insets_1.top, size_1.width, size_1.height); // Do not complain about the setbounds (I use it for a specefic reason)

add(News);
News.addActionListener(this);
}

public void TP_Button(){
Icon TP_img = new ImageIcon(this.getClass().getResource("/onglet/TP.png"));
Icon TP_Select_img = new ImageIcon(this.getClass().getResource("/onglet/TP_Select.png"));

TP = new JButton(TP_img);
TP.setRolloverIcon(TP_Select_img);
TP.setOpaque(false);
TP.setContentAreaFilled(false);
TP.setBorderPainted(false);
TP.setFocusPainted(false);

Insets insets_6 = TP.getInsets();
Dimension size_6 = TP.getPreferredSize();
TP.setBounds(50+ insets_6.left, -10 + insets_6.top, size_6.width, size_6.height);

add(TP);
TP.setVisible(false);
TP.addActionListener(this);

}

public void MC_Button(){
Icon MC_img = new ImageIcon(this.getClass().getResource("/onglet/MC.png"));
Icon MC_select_img = new ImageIcon(this.getClass().getResource("/onglet/MC_Select.png"));

MC = new JButton(MC_img);
MC.setRolloverIcon(MC_select_img);
MC.setOpaque(false);
MC.setContentAreaFilled(false);
MC.setBorderPainted(false);
MC.setFocusPainted(false);

Insets insets_7 = MC.getInsets();
Dimension size_7 = MC.getPreferredSize();
MC.setBounds(148+ insets_7.left, -10 + insets_7.top, size_7.width, size_7.height);

add(MC);
MC.setVisible(false);
MC.addActionListener(this);

}

public Frame(){
super("Multi Launcheur");
setLayout(null);

News_Button();
TP_Button();
MC_Button();

}


public void actionPerformed(ActionEvent e){

if(e.getSource() == TP){
System.out.println("TP");

TP_B = true;

if(MC_B == true){
Minecraft_JSP.setVisible(false);
}

TechPack_JEP = new JEditorPane();
TechPack_JEP.setEditable(false);
TechPack_JEP.setBorder(null);
try {
TechPack_JEP.setPage("http://www.techpackcreator.tumblr.com/");
} catch (IOException error) {
TechPack_JEP.setContentType("text/html");
System.out.println("ERROR");
}
TechPack_JSP = new JScrollPane(TechPack_JEP);
TechPack_JSP.setBounds(67, 27, 798, 465);
TechPack_JSP.getVerticalScrollBar().setUnitIncrement(10);

add(TechPack_JSP);
}
if(e.getSource() == MC){
System.out.println("MC");
MC_B = true;

if(TP_B == true){
TechPack_JSP.setVisible(false);
}

Minecraft_JEP = new JEditorPane();
Minecraft_JEP.setEditable(false);
Minecraft_JEP.setBorder(null);

try {
Minecraft_JEP.setPage("http://www.mcupdate.tumblr.com/");
} catch (IOException error) {
Minecraft_JEP.setContentType("text/html");
}
Minecraft_JSP = new JScrollPane(Minecraft_JEP);
Minecraft_JSP.setBounds(67, 27, 798, 465);
Minecraft_JSP.getVerticalScrollBar().setUnitIncrement(10);

add(Minecraft_JSP);
}

}

好的,这就是 Frame 类(我只留下了相关按钮的代码)。

当新闻按钮将显示这些 TP 和 MC 按钮时。

当点击其中一个时,它将显示新闻(此处为 TechPack:我的服务器或 Minecraft 新闻)

我想要的是 if(e.getSource() == TP) 中的所有代码都在一个单独的类中(称为 News_TechPack)

最佳答案

请记住,我使用这个 Main 类而不是您的 Frame 类。你也可以用你的。还要考虑不要将行为写入单独的类中,而只写入 Frame 类中的函数中。通过这个示例,您应该能够自己编写函数。

public class Main implements ActionListener{

JFrame f;
JButton button;

boolean TP_B = false;

ButtonBehaviour bb;

public Main()
{
bb = new ButtonBehaviour(this);
f = new JFrame();

f.setSize(400,400);
f.setLocationRelativeTo(null);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

button = new JButton("Test");

button.addActionListener(this);
f.add(button);


f.setVisible(true);
}

public static void main(String[] args) throws IOException {
new Main();
}

@Override
public void actionPerformed(ActionEvent e) {
if(e.getSource() == button)
{
System.out.println("Call the specific function in your behaviour class");
bb.buttonBehaviour();
}

}


}

class ButtonBehaviour{

Main m;

public ButtonBehaviour(Main pMain)
{
m = pMain;
}

public void buttonBehaviour()
{
System.out.println("TP");

m.TP_B = true;

//Write here your rest behaviour.
//Keep in mind to use your Main instance or Frame instance
//for calling and changing your specific variables.
//you could also just create your
//buttonBehaviour-Functions in your Frame class. Would
//be easier
}
}

关于java - 从 ActionPerformed 中的另一个类导入代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17989789/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com