-1
我試圖使用從數據庫表中抓取的名稱創建JMenu,因此JMenu項目的數量將變化。分配可變數量的新對象
public static JMenuBar drawMenuBar(){
ArrayList List = grabSQLTableNames();
JMenuBar menu = new JMenuBar();
JMenu contracts = new JMenu("Contracts");
//from here I am a bit stuck on how to add new JMenuItems to the Menu
}
任何幫助都會很棒。
這工作!謝謝! –