在哪里放置JOptionPaneShowInputDialog代码? 在哪里放置JOptionPaneShowInputDialog代码?在哪里放置JOptionPaneShowInputDialog代码? 在哪里放置JOptionPaneShowInputDialog代码? 在哪里放置JOptionPaneShowInputDialog代码? 我想在下面的代码中添加一个JoptionPaneShowInputDialog()(尚不在代码中)。
我可以,但是在递归之前,我无法使对话框出现在黑色面板中。
对话框在图形之后出现...
public class FractalTree extends JPanel implements ActionListener
{
int x1=350;
int y1=600;
int angle=-90;
int depth=11;
int k=10;
JLabel label_1;
private void drawTree(Graphics g, int x1, int y1, double angle, int depth, int k)
{
if(depth==11)
g.setColor(Color.GRAY);
g.fillRect(100, 600, 1160, 10);
g.setColor(Color.white);
if (depth == 0) return;
((Graphics2D) g).setStroke(new BasicStroke((float) (k*0.9)));
int x2 = x1 + (int) (Math.cos(Math.toRadians(angle)) * depth * 11*Math.random()+1);
int y2 = y1 + (int) (Math.sin(Math.toRadians(angle)) * depth * 11*Math.random()+1);
if(depth<3)
{
g.setColor(Color.green);
}
g.drawLine(x1, y1, x2, y2);
drawTree(g, x2, y2, angle - 19, depth-1,k-1);
drawTree(g, x2, y2, angle + 19, depth-1,k-1);
}
public void paintComponent(Graphics g)
{
super.paintComponent(g);
g.setColor(Color.white);
drawTree(g,x1,y1,angle,depth,k);
drawTree(g,x1+600,y1,angle,depth,k);
}
public FractalTree()
{
this.setBackground(Color.black);
}
public static void gui()
{
JFrame f=new JFrame("fractal tree");
JLabel label_1=new JLabel("<html>RANDOM TREE<br><center>FRACTAL");
label_1.setForeground(Color.red);
Font font = new Font("Courier", Font.BOLD,25);
label_1.setFont(font);
FractalTree ft=new FractalTree();
f.getContentPane().add(ft);
f.setSize(1500, 1000);
JButton button = new JButton("Close Me");
button.addActionListener(ft);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
ft.add(label_1);
ft.add(button);
f.setUndecorated(true);
f.setVisible(true);
}
public static void main(String[] args)
{
gui();
}
@Override
public void actionPerformed(ActionEvent e)
{
System.exit(0);
}
}
我可以寻求帮助吗? 谢谢
答案 0 :(得分:0)
问题和意图有些不清楚。对话框的目的是什么?
我假设您想收集一些信息,然后将这些信息传递给FractalTree
来更改其呈现方式
问题和意图有些不清楚。对话框的目的是什么?
我假设您想收集一些信息,然后将这些信息传递给FractalTree
以更改其呈现方式,在这种情况下,您可能需要将对话框放置在创建FractalTree
之前>
public static void gui()
{
// You can put the dialog here...
JFrame f=new JFrame("fractal tree");
//...
如果要在显示属性FractalTree
之后更改属性JButton
,则可能需要使用ActionListener
和JOptionPane
并将对话框放在其中...或提供第二个视图可以直接收集属性
实际上,对话框的目的是询问递归级别。如果我按照您的建议放置它,就可以了,但是对话框将单独出现,而不是出现在黑色面板中,我希望它出现在面板中...
我们要明确一点,所以它不是教程或指导网站。您的问题不是技术问题,而是经验问题。您应该花更多时间阅读诸如Creating a GUI With Swing之类的教程并尝试一些事情。这样您才能成为更好的开发人员,并学会解决自己的问题。
根据您的反馈,FractalTree
不是您所需要的。
相反,您需要采取稍微不同的方法并提供自己的输入组件。
首先,您需要更改depth
,以便可以更轻松地修改0
属性(并将初始深度设置为public class FractalTree extends JPanel implements ActionListener {
private int depth = 0; // set to 0 to stop it from rendering
public void setDepth(int depth) {
this.depth = depth;
repaint();
}
public int getDepth() {
return depth;
}
,以使其停止绘制)
public class InputPane extends JPanel {
private FractalTree fractalTree;
private JTextField depthField;
public InputPane(FractalTree fractalTree) {
this.fractalTree = fractalTree;
depthField = new JTextField(10);
depthField.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent evt) {
String text = depthField.getText().trim();
try {
int value = Integer.parseInt(text);
fractalTree.setDepth(value);
} catch (NumberFormatException exp) {
JOptionPane.showMessageDialog(InputPane.this, text + " is not a valid numerical value");
}
}
});
}
}
接下来,您需要创建自己的输入组件,该组件可以从用户那里获取输入并更新树
import java.awt.EventQueue;
import javax.swing.JFrame;
public class Main {
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
FractalTree tree = new FractalTree();
InputPane input = new InputPane(tree);
JFrame frame = new JFrame();
frame.add(tree);
frame.add(input, BorderLayout.SOUTH);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
}
然后,您要创建一个可以将两者结合在一起的新入口点。
FractalTree
是的,这将产生一个小窗口,因为getPreferredSize
没有定义任何大小调整提示,可以通过重写 var autenticarUsuario = function () {
var authAdmin;
fetch(ENDPOINT_USUARIO, { method: 'get' })
.then(response => authAdmin = response.json());
if (authAdmin.nome === "usuário não cadastrado") {
exibeTela("acessoNegado");
}
else {
$("#saudacaoUsuario").html(authAdmin.nome.split(" ")[0]);
exibeConsultaUsuario();
}
}
方法并返回更合适的大小来解决。
这将使您拥有一条“更好的道路”,仍然有一些您需要解决的问题,因为为您做所有这一切都不会帮助您