我在选择列表中自定义了一个组合框来显示线型,但按钮只显示一个文本。如何在按钮中绘制选定的线型。
ComboBox<String> cmb = new ComboBox<String>();
cmb.getItems().addAll("-fx-stroke-dash-array: 12 2 4 2;", "-fx-stroke-dash-array: 2 2;");
cmb.setCellFactory(new Callback<ListView<String>, ListCell<String>>()
{
@Override public ListCell<String> call(ListView<String> p)
{
return new ListCell<String>()
{
private final Group group;
private final Line line;
{
setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
group = new Group();
group.getChildren().add(new Rectangle(100, 30, Color.WHITE));
line = new Line(0, 15, 100, 15);
group.getChildren().add(line);
}
@Override protected void updateItem(String style, boolean empty)
{
super.updateItem(style, empty);
if(style != null && !empty)
{
line.setStyle(style);
setGraphic(group);
}
}
};
}
});
这是它的渲染方式:
我想显示选定的线条样本,而不是样式文本“-fx-stroke...”,我该如何解决?
在选择列表中,行的左侧总是有一个额外的空格,可以去掉这个空格吗?