Notice
Recent Posts
Recent Comments
Link
관리 메뉴

DreamFactory7 :: IT

문제되는부분 : 빨간색 본문

삽질/GameServer

문제되는부분 : 빨간색

우루사1호 2010. 6. 3. 18:40




  /////////////////////////////////////////////////////////////
  // 채팅 로그창
  // TODO 하나의 패널에 넣고개발하려고했으나 라벨이 커져버려서 안될꺼같음
  panel_ChatLog = new Panel();
 panel_ChatLog.setLayout(new BoxLayout(panel_ChatLog, BoxLayout.Y_AXIS));
  panel_ChatLog.setBounds(15, 80, 612, 300);
  //panel_ChatLog.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
  
  Label label_ChatLog = new Label("채팅로그");
  //label_ChatLog.setBounds(15, 60, 80, 20);
  panel_ChatLog.add(label_ChatLog);
  //this.add(label_ChatLog);
  
  textarea_ChatLog = new TextArea();
  panel_ChatLog.add(textarea_ChatLog);
  this.add(panel_ChatLog);