0
我正在使用TableView的應用程序,並有一個表菜單按鈕來添加或從列表中刪除列。JavaFX Table菜單按鈕列表顯示文本,但不顯示
因爲我希望我的列標題有提示,我別無選擇,只能創建一個標籤,並在使用它的方式如下:
// Some code here
TableColumn col;
// some code here
col.setGraphic(header_title);
的問題,這是在程序運行時,表菜單按鈕顯示空文本列表:
,當我做了另一方面:
// Some code here
TableColumn col;
// some code here
col.setText(rs.getString("column_title"));
col.setGraphic(header_title);
我可以看到列菜單上的文字,但實際的標題被附加到圖形:
我試圖尋找執行setContentDisplay(GRAPHIC_ONLY)的方式,但這種似乎並不存在TableColumn,我不知道如何訪問標題節點爲了設置此設置。
任何幫助將不勝感激。