comboBox
yaptığım bir program hazırlıyorum ve ona bir actionlistener
eklediğimde ona tıklarsam bir çerçeve görünecektir.Bu kodu kısa yoldan yazmanın bir yolu var mı?
Kodu:
Ben eğer neredeyse 16 örnek bir sürü kullanarak olacağını if-else bu durumda ben kullanan olacağınıString menulist [] = {"", "Array", "BubbleSort" ," - Selection Sort"," - Insertion Sort"," - Merge Sort","Recursion"," - Factorial"," - Anagramming"," - Towers of Hanoi","Stacks","Trees"," - Types of Trees","Binary Tree","Shell Sort","Quick Sort","Hash Table","Graphs"};
final JComboBox SelectMenu = new JComboBox(menulist);
SelectMenu.setFont(new Font("Tahoma", Font.PLAIN, 17));
SelectMenu.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
int list = SelectMenu.getSelectedIndex();
if(list == 1){
//Array
JFrame frameArray = new JFrame();
frameArray.setBounds(100, 100, 830, 601);
frameArray.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frameArray.getContentPane().setLayout(null);
frameArray.setVisible(true);
JLabel lblArray = new JLabel("Array");
lblArray.setFont(new Font("Lucida Bright", Font.BOLD | Font.ITALIC, 25));
lblArray.setBounds(368, 63, 122, 41);
frameArray.getContentPane().add(lblArray);
JLabel AnArrayIs = new JLabel();
AnArrayIs.setBackground(Color.WHITE);
AnArrayIs.setText("An array is a systematic arrangement of similar objects, usually in rows and columns.");
AnArrayIs.setBounds(46, 103, 357, 432);
frameArray.getContentPane().add(AnArrayIs);
. Çerçeve için daha kısa bir kod yazmanın bir yolu var mı? Öyleyse eğer 16 dizinine kadar devam edecektim?
Teşekkürler! (:
[CardLayout Nasıl Kullanılır] (http://docs.oracle.com/javase/tutorial/uiswing/layout/card.html) – MadProgrammer