在我的程序中,我必须在class Employee < ApplicationRecord
has_and_belongs_to_many :tasks
end
按下时动态@task = Task.create(start_date:Time.zone.now, duration:2)
@employee.tasks << @task
。我必须根据JTextField
中的文字设置JButton
大小。
无论何时我在JTextField
中输入任何消息并按下JTextArea
,它都会在JTextArea
内显示该消息。 JButton
大小根据我要在JTextField
中显示的文字而定。
这是我的代码
JTextField