二级Java考试辅导教程:5.1用AWT生成图形化用户界面[3]

文章作者 100test 发表时间 2007:03:10 18:43:51
来源 100Test.Com百考试题网


在使用BorderLayout的时候,如果容器的大小发生变化,其变化规律为:组件的相对位置不变,大小发生变化。例如容器变高了,则North、South区域不变,West、Center、East区域变高;如果容器变宽了,West、East区域不变,North、Center、South区域变宽。不一定所有的区域都有组件,如果四周的区域(West、East、North、South区域)没有组件,则由Center区域去补充,但是如果Center区域没有组件,则保持空白,其效果如下几幅图所示:
  North区域缺少组件 
  North和Center区域缺少组件
  3. GridLayout
  使容器中各个组件呈网格状布局,平均占据容器的空间。
  例5.6
   import java.awt.*.
   public class ButtonGrid {
   public static void main(String args[]) {
    Frame f = new Frame("GridLayout").
    f.setLayout(new GridLayout(3,2)).
            //容器平均分成3行2列共6格
    f.add(new Button("1")). //添加到第一行的第一格
    f.add(new Button("2")). //添加到第一行的下一格
    f.add(new Button("3")). //添加到第二行的第一格
    f.add(new Button("4")). //添加到第二行的下一格
    f.add(new Button("5")). //添加到第三行的第一格
    f.add(new Button("6")). //添加到第三行的下一格
    f.setSize(200,200).
    f.setVisible(true).
   }
   } 来源:www.examda.com

  5.1.4 LayoutManager 布局管理器(2)
  4. CardLayout
  CardLayout布局管理器能够帮助用户处理两个以至更多的成员共享同一显示空间,它把容器分成许多层,每层的显示空间占据整个容器的大小,但是每层只允许放置一个组件,当然每层都可以利用Panel来实现复杂的用户界面。牌布局管理器(CardLayout)就象一副叠得整整齐齐的扑克牌一样,有54张牌,但是你只能看见最上面的一张牌,每一张牌就相当于牌布局管理器中的每一层。
  例5.7
  import java.awt.*.
  import java.awt.event.*. //事件处理机制,下一节的内容
  public class ThreePages implements MousListener {
  CardLayout layout=new CardLayout(). //实例化一个牌布局管理器对象
  Frame f=new Frame("CardLayout").
  Button page1Button.
  Label page2Label. //Label是标签,实际上是一行字符串
  TextArea page3Text. //多行多列的文本区域
  Button page3Top.
  Button page3Bottom.
  public static void main(String args[])
  { new ThreePages().go(). }
  Public void go()
  {   f.setLayout(layout). //设置为牌布局管理器layout
   f.add(page1Button=new Button("Button page"),"page1Button"). /*第二个参数"page1Button"表示的是你对这层牌所取的名字*/
  page1Button.addMouseListener(this). //注册监听器
  f.add(page2Label=new Label("Label page"),"page2Label").
  page2Label.addMouseLisener(this). //注册监听器
  Panel panel=new Panel().
  panel.setLayout(new BorderLayout()).
  panel.add(page3Text=new TextArea("Composite page"),"Center").
  page3Text.addMouseListener(this).
  panel.add(page3Top=new Button("Top button") , "North").
  page3Top.addMouseListener(this).
  panel.add(page3Bottom=new Button("Bottom button") ,"South").
  page3Bottom.addMouseListener(this).
  f.add(panel,"panel").
  f.setSize(200,200).
  f.setVisible(true).
  }
  ……
  }

相关文章


二级Java考试辅导教程:6.1线程简介[3]
二级Java考试辅导教程:6.1线程简介[1]
二级Java考试辅导教程:5.3AWT组件库[1]
二级Java考试辅导教程:5.2AWT事件处理模型
二级Java考试辅导教程:5.1用AWT生成图形化用户界面[3]
二级Java考试辅导教程:5.1用AWT生成图形化用户界面[2]
二级Java考试辅导教程:5.1用AWT生成图形化用户界面[1]
二级Java考试辅导教程:4.8对象的串行化(Serialization)
二级Java考试辅导教程:4.7字符流的处理[2]
澳大利亚华人论坛
考好网
日本华人论坛
华人移民留学论坛
英国华人论坛