2024-10-08 00:39:13 +03:00
|
|
|
package Common.Visual.Controls;
|
2024-10-07 00:58:29 +03:00
|
|
|
import Common_old.UI.Menus.TextComboBoxMenu;
|
2023-09-17 22:13:42 +03:00
|
|
|
|
|
|
|
|
import javax.swing.*;
|
|
|
|
|
public class StyledTextComboBox extends JComboBox<String> {
|
|
|
|
|
public StyledTextComboBox() {
|
|
|
|
|
setComponentPopupMenu(new TextComboBoxMenu(this));
|
|
|
|
|
}
|
|
|
|
|
}
|