- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我设计了一个带有一些组件的JFrame
。在该 JCheckBox
组件中,我给出了一个名称,但当我运行应用程序时,不会显示全名。我想显示给定的名称。
public class FindDemo extends JFrame
{
Label l1;
JCheckBox matchCase,MatchWholeWords;
TextField tf;
JButton find_next,cancel;
public FindDemo()
{
l1 = new Label("Find What: ");
matchCase=new JCheckBox();
matchCase.setText("Match Case ");
MatchWholeWords=new JCheckBox("Match Whole Words ");
tf = new TextField(30);
find_next = new JButton("Find Next");
cancel = new JButton("Cancel");
setLayout(null);
int label_w = 80;
int label_h = 20;
int tf_w = 120;
l1.setBounds(10,10, label_w, label_h);
add(l1);
tf.setBounds(10+label_w, 10, tf_w, 20);
add(tf);
matchCase.setBounds(10, 10+label_h+10, label_w, label_h);
add(matchCase);
MatchWholeWords.setBounds(10, 10+label_h+35, label_w, label_h);
add(MatchWholeWords);
find_next.setBounds(250, 10, 100, 20);
add(find_next);
cancel.setBounds(250, 40, 100, 20);
add(cancel);
int w = 400;
int h = 200;
setSize(w,h);
Point center = GraphicsEnvironment.getLocalGraphicsEnvironment().getCenterPoint();
setLocation(center.x-w/2, center.y-h/2);
setVisible(true);
}
public static void main(String args[]){
new FindDemo();
}
}
最佳答案
Label
→ JLabel
; TextField
→ JTextField
, ... )setLayout(null)
) 和 setBounds()
。检查Using Layout Managers .pack()
方法代替 setSize(w, h)
。full name is not displayed
因为您使用 setBounds()
和 null 布局。 matchCase.setBounds(10, 10 + label_h + 10, label_w, label_h)
您为 JCheckBox
设置的空间不足,因为它显示为“...”。
例如,带有 GridBagLayout
的面板:
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
public class TestFrame extends JFrame {
JLabel l1;
JCheckBox matchCase, MatchWholeWords;
JTextField tf;
JButton find_next, cancel;
public TestFrame() {
l1 = new JLabel("Find What: ");
matchCase = new JCheckBox();
matchCase.setText("Match Case ");
MatchWholeWords = new JCheckBox("Match Whole Words ");
tf = new JTextField(30);
find_next = new JButton("Find Next");
cancel = new JButton("Cancel");
setLayout(new GridBagLayout());
GridBagConstraints c = new GridBagConstraints();
c.insets = new Insets(5, 5, 5, 5);
c.gridx = 0;
c.gridy = 0;
c.anchor = GridBagConstraints.WEST;
add(l1, c);
c.gridx++;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
add(tf, c);
c.fill = GridBagConstraints.NONE;
c.weightx = 0;
c.gridx++;
add(find_next, c);
c.gridx = 0;
c.gridy = 1;
c.gridwidth = 2;
add(matchCase, c);
c.gridx++;
c.gridx++;
c.gridwidth = 1;
c.fill = GridBagConstraints.HORIZONTAL;
add(cancel, c);
c.gridy++;
c.gridx = 0;
c.gridwidth = 2;
add(MatchWholeWords, c);
setLocationRelativeTo(null);
pack();
setVisible(true);
}
public static void main(String[] args) {
new TestFrame();
}
}
关于java - 显示 JCheckBox 项目的全名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24425542/
我正在尝试用此人的全名填充 Yii2 中的下拉列表,名字和姓氏在我的数据库中的不同列中。 在我的个人表中 编号 名字 姓氏 dep_id (fk) ... 在我的 Person.php 模型中有 pu
我目前正在像这样连接名字和姓氏(使用 PostgreSQL): concat(customers.firstname, ' ', customers.lastname) 我在这里遇到的问题是我的客户只
从 (new Date()).toString() 返回的字符串看起来像这样: "Tue Nov 22 2016 14:14:51 GMT-0800 (Pacific Standard Time)"
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
已经将近 3 天了,我仍然无法修复该错误。简单的情况,我想搜索人名(姓名和姓氏)。 示例: 首先我写给 John(结果:John Newman、John Stable、John Carens) 然后我
我在我的项目中使用 Laravel 5.3,我试图获取多个列并在 View 的下拉选择元素中显示数据。我正在做这样的查询: $users = User::select( DB:
我目前正在使用此脚本从给定路径中提取名称、文件夹、文件夹名称: Get-ChildItem "C:\user\desktop" | Select Name, ` @{ n = 'Folde
我通过在 ApplicationUser 中添加几个字段扩展了 ASP NET 身份架构。派生自 IdentityUser 的类.我添加的字段之一是 FullName . 现在,当我写 User.Id
我正在开发一个 Android 应用程序,其中任何使用我们的应用程序登录到 Facebook 的 Android 用户,我需要从 Facebook 中提取他的照片、他的性别和他的全名。我正在为此使用
我是一名优秀的程序员,十分优秀!