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.
25 lines
563 B
25 lines
563 B
package com.fr.design.widget; |
|
|
|
import com.fr.design.mainframe.ElementCasePane; |
|
|
|
/** |
|
* 悬浮窗内嵌控件面板 |
|
* @author Renekton |
|
* @since on 2024/08/16 |
|
* Created on 2024/08/16 |
|
*/ |
|
public class FloatWidgetManageCardPane extends EastCellWidgetCardPane { |
|
|
|
/** |
|
* 悬浮窗控件管理 |
|
* @param pane 面板 |
|
*/ |
|
public FloatWidgetManageCardPane(ElementCasePane pane) { |
|
super(pane); |
|
} |
|
|
|
@Override |
|
protected WidgetEventPane initWidgetEventPane(ElementCasePane pane){ |
|
return new WidgetEventPaneNoPop(pane); |
|
} |
|
}
|
|
|