자바 FX 아시는분 도와주세요
글쓴이: Post_Ada / 작성시간: 월, 2017/11/27 - 11:42오후
package application; import java.awt.TextField; import javafx.application.Application; import javafx.geometry.Pos; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.scene.control.PasswordField; import javafx.scene.layout.GridPane; import javafx.scene.layout.StackPane; import javafx.stage.Stage; public class Main extends Application { @Override public void start(Stage stage) { try { Label label1 = new Label("학번: "); Label label2 = new Label("비밀번호: "); TextField tfname= new TextField(); PasswordField tfPassword = new PasswordField(); grid.addRow(0, label1,tfname); grid.addRow(1, label2, tfPassword); grid.setAlignment(Pos.CENTER); pane.getChildren().add(grid); stage.setScene(scene); stage.show(); } catch(Exception e) { e.printStackTrace(); } } GridPane grid = new GridPane(); StackPane pane = new StackPane(); Scene scene = new Scene (pane,1280,700); public static void main(String[] args) { launch(args); } }
위 코드는 자바 fx로 구현한 로그인창을 만드는 기능이고요
근데 사진에서 보이는것 과 같이 addRow부분에 빨간줄이 생기는것은 왜그런건가요? 두번째 addRow는 잘 되는데 말이죠
File attachments:
첨부 | 파일 크기 |
---|---|
캡처23.JPG | 63.33 KB |
Forums:
댓글 달기