Browse Source
* commit '841741e6eebe712a3497bd288c70f35c6389e679': KERNEL-442 配合测试新版本插件商店bugfix/10.0
richie
6 years ago
2 changed files with 44 additions and 2 deletions
@ -0,0 +1,27 @@ |
|||||||
|
package com.fr.design.upm; |
||||||
|
|
||||||
|
import com.fr.design.dialog.BasicPane; |
||||||
|
import com.fr.design.ui.ModernUIPane; |
||||||
|
|
||||||
|
import java.awt.*; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author richie |
||||||
|
* @version 10.0 |
||||||
|
* Created by richie on 2019-04-12 |
||||||
|
* Update Plugin Manager容器 |
||||||
|
*/ |
||||||
|
public class UPMPane extends BasicPane { |
||||||
|
@Override |
||||||
|
protected String title4PopupWindow() { |
||||||
|
return "UPM"; |
||||||
|
} |
||||||
|
|
||||||
|
public UPMPane() { |
||||||
|
setLayout(new BorderLayout()); |
||||||
|
ModernUIPane<Void> modernUIPane = new ModernUIPane.Builder<Void>() |
||||||
|
.withURL("https://market.fanruan.com") |
||||||
|
.build(); |
||||||
|
add(modernUIPane, BorderLayout.CENTER); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue