1
HBoxes、Buttons、およびLabelsの配列を作成しました。 「追加」ボタンが押されるたびに、 は私が設定:JavaFXのフローペインからノードを削除するにはどうすればよいですか?
hbox[count] = new HBox();
buttons[count] = new Button();
labels[count] = new Label();
(カウントは0から始まり、5で終わる場合)ということは、それぞれのHBoxが含まれているので、私は、(ボタンとのHBoxにラベルを追加 ボタンとラベル)を追加し、5つのHBoxをフローペインに追加します。 HBox内のボタンをクリックしてフローペインからHBoxを削除するにはどうすればよいですか? これはフローペインの各HBoxの写真です。ここで
/**
* FXML Controller class
*
* @author HeshamSaleh
*/
public class SecondaryViewController implements Initializable {
@FXML
private TextField searchBar;
@FXML
private Button addBtn;
@FXML
private FlowPane flowPane;
ArrayList<String> addedArtists = new ArrayList<String>();
String[] artists = {"Craig David", "Coldplay", "Eminem", "D12", "Shakira", "Radiohead", "Linkin Park", "Maroon 5", "Celine Dion", "50 Cent", "Tupac", "Snoop Dogg", "Metallica", "Backstreet Boys"};
List<String> artistNames = new ArrayList<String>(Arrays.asList(artists));
int count = 4;
HBox[] hboxArr = new HBox[5];
Button[] buttonArr = new Button[5];
Label[] labelArr = new Label[5];
int hboxCount = 0;
/**
* Initializes the controller class.
*/
@Override
public void initialize(URL url, ResourceBundle rb) {
searchBar.setFocusTraversable (false);
TextFields.bindAutoCompletion(searchBar, artistNames);
}
@FXML
private void addBtnPressed(MouseEvent event) {
String artistName = searchBar.getText();
searchBar.setText("");
if(artistNames.contains(artistName) && !addedArtists.contains(artistName) && count != -1) {
hboxArr[hboxCount] = new HBox();
buttonArr[hboxCount] = new Button();
labelArr[hboxCount] = new Label();
hboxArr[hboxCount].setAlignment(Pos.CENTER);
hboxArr[hboxCount].setSpacing(-1);
buttonArr[hboxCount].setText("X");
buttonArr[hboxCount].setAlignment(Pos.CENTER);
buttonArr[hboxCount].setStyle("-fx-background-color: TRANSPARENT; -fx-border-color: #000000;");
buttonArr[hboxCount].setFont(Font.font("Open Sans", FontWeight.BOLD, 12));
buttonArr[hboxCount].setMinWidth(20);
buttonArr[hboxCount].setMinHeight(20);
labelArr[hboxCount].setText(artistName.toUpperCase());
labelArr[hboxCount].setFont(Font.font("Proxima Nova Rg", 12));
labelArr[hboxCount].setAlignment(Pos.CENTER);
labelArr[hboxCount].setStyle("-fx-background-color: TRANSPARENT; -fx-border-color: #000000;");
labelArr[hboxCount].setMinWidth(90);
labelArr[hboxCount].setMinHeight(27);
hboxArr[hboxCount].getChildren().addAll(buttonArr[hboxCount], labelArr[hboxCount]);
flowPane.setAlignment(Pos.CENTER);
flowPane.getChildren().add(hboxArr[hboxCount]);
addedArtists.add(artistName);
count--;
hboxCount++;
}
}
}
あなたはどのくらいあなたが削除しているか分かりますか?ボタンを押したときに特定のhbを削除する必要があります –
@HeshamSaleh Akhiボタン押下のHBox(すなわち親)を削除します。IDEのコードをコピーして貼り付けてください:) – Yahya
私は何が必要です。上記のコードで実装してもらえますか?ありがとう、Yahya! –