private void initUI(){
setLayout(new GridBagLayout());
add(new JLabel("ADB mode:"), new GridBagConstraints(0, 0, 1, 1, 0, 0, GridBagConstraints.NORTHEAST,
GridBagConstraints.NONE, new Insets(10, 10, 0, 0), 0, 0));
adbComboBox = new JComboBox();
adbComboBox.addItem(new KeyValueItem("Socket(Default)", "socket"));
adbComboBox.addItem(new KeyValueItem("Adb", "adb"));
add(adbComboBox, new GridBagConstraints(1, 0, 1, 1, 0, 0, GridBagConstraints.NORTHWEST,
GridBagConstraints.HORIZONTAL, new Insets(10, 5, 0, 0), 0, 0));
add(new JLabel("need restart"), new GridBagConstraints(3, 0, 1, 1, 1, 0, GridBagConstraints.NORTHEAST,
GridBagConstraints.HORIZONTAL, new Insets(10, 5, 0, 0), 0, 0));
add(new JLabel("Look&Feel:"), new GridBagConstraints(0, 1, 1, 1, 0, 0, GridBagConstraints.NORTHEAST,
GridBagConstraints.NONE, new Insets(10, 10, 0, 0), 0, 0));
lfComboxBox = new JComboBox();
lfComboxBox.addItem(new KeyValueItem("Native(Windows Default)", UIManager.getSystemLookAndFeelClassName()));
lfComboxBox.addItem(new KeyValueItem("Crocss Platform(Linux Default)", UIManager.getCrossPlatformLookAndFeelClassName()));
add(lfComboxBox, new GridBagConstraints(1, 1, 1, 1, 0, 0, GridBagConstraints.NORTHWEST,
GridBagConstraints.HORIZONTAL, new Insets(10, 5, 0, 0), 0, 0));
add(new JLabel("need restart"), new GridBagConstraints(3, 1, 1, 1, 1, 0, GridBagConstraints.NORTHEAST,
GridBagConstraints.HORIZONTAL, new Insets(10, 5, 0, 0), 0, 0));
add(new JLabel("Window close:"), new GridBagConstraints(0, 2, 1, 1, 0, 0, GridBagConstraints.NORTHEAST,
GridBagConstraints.NONE, new Insets(10, 10, 0, 0), 0, 0));
mainWidowCloseComboxBox = new JComboBox();
mainWidowCloseComboxBox.addItem(new KeyValueItem("Exit(Default)", "1"));
mainWidowCloseComboxBox.addItem(new KeyValueItem("Minimize", "2"));
add(mainWidowCloseComboxBox, new GridBagConstraints(1, 2, 1, 1, 0, 0, GridBagConstraints.NORTHWEST,
GridBagConstraints.HORIZONTAL, new Insets(10, 5, 0, 0), 0, 0));
add(new JLabel(), new GridBagConstraints(100, 100, 100, 1, 1, 1, GridBagConstraints.WEST,
GridBagConstraints.BOTH, new Insets(10, 10, 0, 0), 0, 0));