當前位置: 首頁>>代碼示例>>Java>>正文


Java Label.getText方法代碼示例

本文整理匯總了Java中javafx.scene.control.Label.getText方法的典型用法代碼示例。如果您正苦於以下問題:Java Label.getText方法的具體用法?Java Label.getText怎麽用?Java Label.getText使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javafx.scene.control.Label的用法示例。


在下文中一共展示了Label.getText方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getLabeledBy

import javafx.scene.control.Label; //導入方法依賴的package包/類
public final String getLabeledBy() {
    Parent root = node.getScene().getRoot();
    Set<Node> allLabels = root.lookupAll(".label");
    for (Node node2 : allLabels) {
        Label label = (Label) node2;
        if (label.getLabelFor() == node) {
            return label.getText();
        }
    }
    return null;
}
 
開發者ID:jalian-systems,項目名稱:marathonv5,代碼行數:12,代碼來源:JavaFXElementPropertyAccessor.java

示例2: clickPseudoHandle

import javafx.scene.control.Label; //導入方法依賴的package包/類
@FXML

    public void clickPseudoHandle(Event event){

        Label lbl = (Label) event.getSource();

        if(!this.joueurSelected.equals(lbl.getText())){
            this.joueurSelected= null;
            lbl.setFont(Font.font(null, FontWeight.NORMAL, 24));
        }else{
            this.joueurSelected = lbl.getText();
            lbl.setFont(Font.font(null, FontWeight.BOLD, 24));
        }

    }
 
開發者ID:tillind,項目名稱:pandemie,代碼行數:16,代碼來源:BoardController.java

示例3: initVBox

import javafx.scene.control.Label; //導入方法依賴的package包/類
private void initVBox(){
    ClassNode node = (ClassNode) getRefNode();

    vbox.setPadding(new Insets(5, 0, 5, 0));
    vbox.setSpacing(5);

    titlePane = new VBox();
    titlePane.setSpacing(5);

    firstLine = new Separator();
    firstLine.setMaxWidth(node.getWidth());

    secondLine = new Separator();
    secondLine.setMaxWidth(node.getWidth());

    type = new Label();
    type.setFont(Font.font("Helvetica", FontWeight.BOLD, 13));
    type.setTextFill(Color.web("#4B6299"));

    title = new Label();
    title.setFont(Font.font("Verdana", FontWeight.BOLD, 12));

    if(node.getType() == null || node.getType().equals("ABSTRACT") || node.getType().equals("CLASS")) {
        type.setManaged(false);
    } else {
        type.setText("<<" + node.getType().toLowerCase() + ">>");
        type.setAlignment(Pos.TOP_CENTER);
        title.setAlignment(Pos.BOTTOM_CENTER);
        type.setVisible(true);
        type.setManaged(true);
    }

    if(node.getTitle() != null) {
        title.setText(node.getTitle());
    }

    title.setAlignment(Pos.CENTER);

    attributes = new Label(node.getAttributes());
    attributes.setFont(Font.font("Verdana", 10));

    operations = new Label(node.getOperations());
    operations.setFont(Font.font("Verdana", 10));

    if(operations.getText() == null || operations.getText().equals("")){
        secondLine.setVisible(false);
    }

    titlePane.getChildren().add(type);
    titlePane.getChildren().add(title);
    vbox.getChildren().addAll(titlePane, firstLine, attributes, secondLine, operations);
}
 
開發者ID:kaanburaksener,項目名稱:octoBubbles,代碼行數:53,代碼來源:ClassNodeView.java


注:本文中的javafx.scene.control.Label.getText方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。