public static void searchByTag_actionPerformed(ActionEvent e) {
TagSearchController sc = new TagSearchController(App.getFrame(), Local.getString("Search By Tag"));
Dimension frmSize = App.getFrame().getSize();
Point loc = App.getFrame().getLocation();
sc.setLocation((frmSize.width) / 3 + loc.x, (frmSize.height) / 3 + loc.y);
sc.setVisible(true);
if (sc.CANCELLED)
return;
}
TagSearchController.java 文件源码
java
阅读 48
收藏 0
点赞 0
评论 0
项目:Neukoelln_SER316
作者:
评论列表
文章目录