Browse Source
Merge in DESIGN/design from ~RENEKTON/design:fbp/release to fbp/release * commit '14cca0ca4b2ed06adba5a30f207012e5d7393af9': 添加注释 新增控件提交面板fbp/merge
3 changed files with 49 additions and 2 deletions
@ -0,0 +1,42 @@
|
||||
package com.fr.design.write.submit; |
||||
|
||||
import com.fine.theme.utils.FineUIScale; |
||||
import com.fr.design.editor.editor.Editor; |
||||
|
||||
import java.awt.BorderLayout; |
||||
import java.awt.Dimension; |
||||
|
||||
import static com.fine.theme.utils.FineUIScale.scale; |
||||
|
||||
/** |
||||
* 控件面板添加的控件绑定的提交入库事件面板 |
||||
* |
||||
* @author Renekton |
||||
* @since 11.0 |
||||
* Created on 2024/09/13 |
||||
*/ |
||||
public class DBManipulationInWdigetEventNoCellPane extends DBManipulationPane { |
||||
|
||||
public DBManipulationInWdigetEventNoCellPane() { |
||||
super(); |
||||
} |
||||
|
||||
public DBManipulationInWdigetEventNoCellPane(Editor<?>[] vTypes) { |
||||
super(vTypes); |
||||
} |
||||
|
||||
protected Dimension createEditTablePreferredSize() { |
||||
return scale(new Dimension(280, 150)); |
||||
} |
||||
|
||||
protected Dimension getPreferredScrollableViewportSize() { |
||||
return scale(new Dimension(280, 120)); |
||||
} |
||||
protected Dimension createControlBtnPanePreferredSize(){ |
||||
return FineUIScale.scale(new Dimension(110, 20)); |
||||
} |
||||
|
||||
protected String setControlBtnPanePosition(){ |
||||
return BorderLayout.EAST; |
||||
} |
||||
} |
Loading…
Reference in new issue