gpt4 book ai didi

java - 使用 Initcomponents() 中的函数

转载 作者:行者123 更新时间:2023-12-02 02:15:07 30 4
gpt4 key购买 nike

我正在使用 Java 制作 JFrame 应用程序,我正在使用应用程序设计器在我的 JFrame 中插入组件。在 Jtextarea 中,我想显示一些文本,但该文本是由我在类中编写的函数返回的。所以我想我可以调用 initcomponents() 中 JTextarea 值中的函数来管理我的 gui 组件的代码。但 initComponent 方法无法修改(以灰色突出显示)。有办法做到这一点吗?

public String yes() {
return "voila";
}

有没有办法做这样的事情?

private void initcomponent() {
jTextArea1.setText("some text" + yes());
}

最佳答案

initComponents() 方法由 IDE 生成,每次构建项目时都会重新生成它(从单独的 xml)。您必须“告诉”IDE您正在添加自定义代码。

  • 转到 GUI 编辑器,单击 JTextArea 组件

enter image description here

  • 选择Properties(在调色板下方的侧边栏中),找到text属性,单击省略号(带有三个点的按钮)

enter image description here

  • 从弹出的对话框中选择自定义代码,输入返回所需字符串的代码。

enter image description here

关于java - 使用 Initcomponents() 中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49411851/

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