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.
41 lines
512 B
41 lines
512 B
package com.fr.design.widgettheme; |
|
|
|
/** |
|
* 控件样式附加选项类型 |
|
* |
|
* @author obo |
|
* @since 11.0 |
|
* Created on 2023/11/13 |
|
*/ |
|
public enum StyleSetting { |
|
|
|
/** |
|
* 主题颜色 |
|
*/ |
|
THEME_COLOR, |
|
/** |
|
* 风格 |
|
*/ |
|
STYLE_TYPE, |
|
/** |
|
* 线型 |
|
*/ |
|
LINE_TYPE, |
|
/** |
|
* 边框圆角 |
|
*/ |
|
BORDER_RADIUS, |
|
/** |
|
* 字体大小 |
|
*/ |
|
FONT_SIZE, |
|
/** |
|
* 字体 |
|
*/ |
|
FONT, |
|
/** |
|
* 按钮背景 |
|
*/ |
|
BTN_BACKGROUND |
|
|
|
}
|
|
|