forked from fanruan/finekit
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
584 B
25 lines
584 B
6 years ago
|
package com.fanruan.api.util;
|
||
|
|
||
|
import com.fr.design.utils.gui.GUICoreUtils;
|
||
|
|
||
|
import javax.swing.*;
|
||
|
import java.awt.*;
|
||
|
|
||
|
public class GUICoreKit {
|
||
|
|
||
|
public static JPanel createFlowPane(Object... var0) {
|
||
|
return GUICoreUtils.createFlowPane(var0);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 弹出菜单,在坐标为x,y处弹出内容为component的菜单
|
||
|
* @param menu
|
||
|
* @param component
|
||
|
* @param x
|
||
|
* @param y
|
||
|
*/
|
||
|
public static void showPopupMenu(JPopupMenu menu, Component component, int x, int y) {
|
||
|
GUICoreUtils.showPopupMenu(menu, component, x, y);
|
||
|
}
|
||
|
}
|