2008年12月17日水曜日

JavaFX ComboBox (Swing)

  1. import javafx.ext.swing.SwingComboBox;  
  2. import javafx.ext.swing.SwingComboBoxItem;  
  3.   
  4. //A combo box with two items  
  5. var combobox = SwingComboBox{  
  6.   width: 200   
  7.   items:[   
  8.       SwingComboBoxItem{ text: "Radial Gradient" },   
  9.       SwingComboBoxItem{ text: "Linear Gradient" },   
  10.       SwingComboBoxItem{ text: "Solid Color"}  
  11.   ]   
  12.   selectedIndex: 0  
  13. };  

0 件のコメント:

コメントを投稿