forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
401 B
14 lines
401 B
package com.fanruan.api.design.ui.component; |
|
|
|
/** |
|
* @author richie |
|
* @version 10.0 |
|
* Created by richie on 2019-08-28 |
|
* 带字典数据的下拉框,显示值和实际值通过字典进行对应 |
|
*/ |
|
public class UIDictionaryComboBox<T> extends com.fr.design.gui.icombobox.UIDictionaryComboBox<T> { |
|
|
|
public UIDictionaryComboBox(T[] keys, String[] values) { |
|
super(keys, values); |
|
} |
|
}
|
|
|