帆软报表设计器源代码。
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.
 
 
 
 

33 lines
973 B

package com.fr.design.login.guide;
import com.fr.design.dialog.BasicPane;
import com.fr.design.jxbrowser.JxUIPane;
import com.fr.design.login.guide.utils.DesignerGuideUtils;
import java.awt.BorderLayout;
/**
* 设计器登录帆软通行证的指南面板
*
* @author Lanlan
* @version 10.0
* Created by Lanlan on 2021/5/21
*/
public class DesignerGuidePane extends BasicPane {
private static final String DESIGNER_GUIDE_HELPER = "DesignerGuideHelper";
@Override
protected String title4PopupWindow() {
return "DESIGNER_GUIDE";
}
public DesignerGuidePane() {
setLayout(new BorderLayout());
JxUIPane<Object> modernUIPane = new JxUIPane.Builder<>()
.bindWindow(DESIGNER_GUIDE_HELPER, w -> DesignerGuideBridge.getBridge())
.withEMB(DesignerGuideHelper.getMainResourcePath(), DesignerGuideUtils.renderMap())
.build();
add(modernUIPane, BorderLayout.CENTER);
}
}