java. gridbag设置两行一列。第一行高度是第二行高度三分之一。
1个回答
2017-11-28 · 【免费测试,验证码5秒必达】
北京巴卜技术有限公司
北京巴卜技术有限公司(以下简称巴卜)是具备国际水准的移动商务平台技术和应用方案提供商。自成立以来,巴卜始终 致力于为国内外企业提供具备国际技术水准的移动商务平台及运营服务。
向TA提问
关注
展开全部
不是你这个理解的。看看这个例子。JPaneljp1=newJPanel();//逼我祭出无序管理器大法 jp1.setLayout(newGridBagLayout()); GridBagConstraintsgbt=newGridBagConstraints(); InsetstitleInsets=newInsets(5,5,5,5);gbt.gridx=0;//X轴位置gbt.gridy=2;//Y轴位置gbt.gridwidth=1;//X轴大小gbt.gridheight=1;//Y轴大小gbt.weightx=0;//水平扩充比例gbt.weighty=0;//垂直扩充比例gbt.fill=GridBagConstraints.NONE;//不扩充gbt.anchor=GridBagConstraints.EAST;//居中对齐gbt.insets=titleInsets;//与相邻格子的间距topleftbottomright gbt.ipadx=0;//额外的扩充区域xgbt.ipady=0;//额外的扩充区域yjp1.add(newJLabel("单词提示:"),gbt);gbt.gridx=1;//X轴位置gbt.gridy=0;//Y轴位置gbt.gridwidth=3;//X轴大小gbt.gridheight=3;//Y轴大小gbt.weightx=1;//水平扩充比例gbt.weighty=1;//垂直扩充比例gbt.fill=GridBagConstraints.BOTH;//左右上下都扩充gbt.anchor=GridBagConstraints.WEST;//居中对齐gbt.insets=titleInsets;//与相邻格子的间距topleftbottomright gbt.ipadx=0;//额外的扩充区域xgbt.ipady=0;//额外的扩充区域yjp1.add(wordDescJl,gbt);gbt.gridx=0;//X轴位置gbt.gridy=5;//Y轴位置gbt.gridwidth=1;//X轴大小gbt.gridheight=1;//Y轴大小gbt.weightx=0;//水平扩充比例gbt.weighty=0;//垂直扩充比例gbt.fill=GridBagConstraints.NONE;//不扩充gbt.anchor=GridBagConstraints.EAST;//居中对齐gbt.insets=titleInsets;//与相邻格子的间距topleftbottomright gbt.ipadx=0;//额外的扩充区域xgbt.ipady=0;//额外的扩充区域yjp1.add(newJLabel("提示/答案:"),gbt);gbt.gridx=1;//X轴位置gbt.gridy=4;//Y轴位置gbt.gridwidth=3;//X轴大小gbt.gridheight=2;//Y轴大小gbt.weightx=1;//水平扩充比例gbt.weighty=1;//垂直扩充比例gbt.fill=GridBagConstraints.BOTH;//左右上下都扩充gbt.anchor=GridBagConstraints.WEST;//居中对齐gbt.insets=titleInsets;//与相邻格子的间距topleftbottomright gbt.ipadx=0;//额外的扩充区域xgbt.ipady=0;//额外的扩充区域yjp1.add(wordJl,gbt);gbt.gridx=0;//X轴位置gbt.gridy=6;//Y轴位置gbt.gridwidth=1;//X轴大小gbt.gridheight=1;//Y轴大小gbt.weightx=0;//水平扩充比例gbt.weighty=0;//垂直扩充比例gbt.fill=GridBagConstraints.NONE;//不扩充gbt.anchor=GridBagConstraints.EAST;//居中对齐gbt.insets=titleInsets;//与相邻格子的间距topleftbottomright gbt.ipadx=0;//额外的扩充区域xgbt.ipady=0;//额外的扩充区域yjp1.add(newJLabel("当前单词总数:"),gbt);gbt.gridx=1;//X轴位置gbt.gridy=6;//Y轴位置gbt.gridwidth=1;//X轴大小gbt.gridheight=1;//Y轴大小gbt.weightx=0;//水平扩充比例gbt.weighty=1;//垂直扩充比例gbt.fill=GridBagConstraints.BOTH;//左右上下都扩充gbt.anchor=GridBagConstraints.WEST;//居中对齐gbt.insets=titleInsets;//与相邻格子的间距topleftbottomright gbt.ipadx=0;//额外的扩充区域xgbt.ipady=0;//额外的扩充区域yjp1.add(sizeJl,gbt);gbt.gridx=2;//X轴位置gbt.gridy=6;//Y轴位置gbt.gridwidth=1;//X轴大小gbt.gridheight=1;//Y轴大小gbt.weightx=0;//水平扩充比例gbt.weighty=0;//垂直扩充比例gbt.fill=GridBagConstraints.NONE;//扩充gbt.anchor=GridBagConstraints.EAST;//居中对齐gbt.insets=titleInsets;//与相邻格子的间距topleftbottomright gbt.ipadx=0;//额外的扩充区域xgbt.ipady=0;//额外的扩充区域yjp1.add(newJLabel("当前单词输错次数:"),gbt);gbt.gridx=3;//X轴位置gbt.gridy=6;//Y轴位置gbt.gridwidth=1;//X轴大小gbt.gridheight=1;//Y轴大小gbt.weightx=0;//水平扩充比例gbt.weighty=1;//垂直扩充比例gbt.fill=GridBagConstraints.BOTH;//扩充gbt.anchor=GridBagConstraints.WEST;//居中对齐gbt.insets=titleInsets;//与相邻格子的间距topleftbottomright gbt.ipadx=0;//额外的扩充区域xgbt.ipady=0;//额外的扩充区域yjp1.add(currenErrCountJl,gbt);gbt.gridx=0;//X轴位置gbt.gridy=7;//Y轴位置gbt.gridwidth=1;//X轴大小gbt.gridheight=1;//Y轴大小gbt.weightx=0;//水平扩充比例gbt.weighty=0;//垂直扩充比例gbt.fill=GridBagConstraints.NONE;//扩充gbt.anchor=GridBagConstraints.EAST;//居中对齐gbt.insets=titleInsets;//与相邻格子的间距topleftbottomright gbt.ipadx=0;//额外的扩充区域xgbt.ipady=0;//额外的扩充区域yjp1.add(newJLabel("提输入单词:"),gbt);gbt.gridx=1;//X轴位置gbt.gridy=7;//Y轴位置gbt.gridwidth=3;//X轴大小gbt.gridheight=1;//Y轴大小gbt.weightx=0;//水平扩充比例gbt.weighty=1;//垂直扩充比例gbt.fill=GridBagConstraints.BOTH;//扩充gbt.anchor=GridBagConstraints.WEST;//居中对齐gbt.insets=titleInsets;//与相邻格子的间距topleftbottomright gbt.ipadx=0;//额外的扩充区域xgbt.ipady=0;//额外的扩充区域yjp1.add(inputJt,gbt);提交回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |