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.
26 lines
739 B
26 lines
739 B
package com.fr.design.actions.cell; |
|
|
|
import com.fr.base.BaseUtils; |
|
import com.fr.design.i18n.Toolkit; |
|
import com.fr.design.menu.KeySetUtils; |
|
import com.fr.general.IOUtils; |
|
|
|
/** |
|
* @author Starryi |
|
* @version 1.0 |
|
* Created by Starryi on 2021/8/26 |
|
*/ |
|
public class CellStyleAttrAction extends CellAttributeTableAction { |
|
|
|
public CellStyleAttrAction() { |
|
this.setMenuKeySet(KeySetUtils.GLOBAL_STYLE); |
|
this.setName(getMenuKeySet().getMenuKeySetName()); |
|
this.setMnemonic(getMenuKeySet().getMnemonic()); |
|
this.setSmallIcon(IOUtils.readIcon("/com/fr/design/images/m_format/cell.png")); |
|
} |
|
|
|
@Override |
|
protected String getID() { |
|
return Toolkit.i18nText("Fine-Design_Form_Widget_Style"); |
|
} |
|
}
|
|
|