可复制的标签/TextField/LabeledText在JavaFX



我只想在JavaFX中创建可复制的标签。我试过创建没有背景,没有焦点边界和默认背景色的TextField,但我没有成功。我发现了很多关于如何从控制中删除焦点背景的问题,但所有这些看起来都像"hack"。

是否有实现可复制文本的标准解决方案?

你可以用css:

创建一个没有边框和背景色的TextField
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.TextField;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class CopyableLabel extends Application {
    @Override
    public void start(Stage primaryStage) {
        TextField copyable = new TextField("Copy this");
        copyable.setEditable(false);
        copyable.getStyleClass().add("copyable-label");
        TextField tf2 = new TextField();
        VBox root = new VBox();
        root.getChildren().addAll(copyable, tf2);
        Scene scene = new Scene(root, 250, 150);
        scene.getStylesheets().add(getClass().getResource("copyable-text.css").toExternalForm());
        primaryStage.setScene(scene);
        primaryStage.show();
    }
    public static void main(String[] args) {
        launch(args);
    }
}

copyable-text.css:

.copyable-label, .copyable-label:focused {
    -fx-background-color: transparent ;
    -fx-background-insets: 0px ;
}

这是我使用的解决方案,在标签旁边有一个小按钮,可以复制文本:

import javafx.geometry.Insets;
import javafx.scene.Node;
import javafx.scene.control.Button;
import javafx.scene.control.ContentDisplay;
import javafx.scene.control.Label;
import org.controlsfx.glyphfont.FontAwesome;
import org.controlsfx.glyphfont.Glyph;
import java.util.Locale;
public class CopiableLabel extends Label
{
    public CopiableLabel()
    {
        addCopyButton();
    }
    public CopiableLabel(String text)
    {
        super(text);
        addCopyButton();
    }
    public CopiableLabel(String text, Node graphic)
    {
        super(text, graphic);
    }
    private void addCopyButton()
    {
        Button button = new Button();
        button.visibleProperty().bind(textProperty().isEmpty().not());
        button.managedProperty().bind(textProperty().isEmpty().not());
        button.setFocusTraversable(false);
        button.setPadding(new Insets(0.0, 4.0, 0.0, 4.0));
        button.setOnAction(actionEvent -> AppUtils.copyToClipboard(getText()));
        Glyph clipboardIcon = AppUtils.createFontAwesomeIcon(FontAwesome.Glyph.CLIPBOARD);
        clipboardIcon.setFontSize(8.0);
        button.setGraphic(clipboardIcon);
        setGraphic(button);
        setContentDisplay(ContentDisplay.RIGHT);
    }
}

最新更新