Examples of XGeneratorFrame


Examples of xgenerator.ui.swing.XGeneratorFrame

   * </p>
   * @author <a href="mailto:shushanlee@msn.com">liss</a>
   * @param e
   */
  public void fullScreenActionPerformed(ActionEvent e) {
    XGeneratorFrame xgeneratorUI = (XGeneratorFrame) ui;
    xgeneratorUI.setExtendedState(java.awt.Frame.MAXIMIZED_BOTH);
    xgeneratorUI.setFullScreen(true);
  }
View Full Code Here

Examples of xgenerator.ui.swing.XGeneratorFrame

   * </p>
   * @author <a href="mailto:shushanlee@msn.com">liss</a>
   * @param e
   */
  public void normalScreenActionPerformed(ActionEvent e) {
    XGeneratorFrame xgeneratorUI = (XGeneratorFrame) ui;
    xgeneratorUI.setExtendedState(java.awt.Frame.NORMAL);
    xgeneratorUI.setFullScreen(false);
  }
View Full Code Here

Examples of xgenerator.ui.swing.XGeneratorFrame

        this.logonFrame.getPasswordField().setFocusable(true);
        throw new IllegalArgumentException("密码为空!");
      }

      if (securityCheck(userName, password)) {
        new XGeneratorFrame();
        this.logonFrame.dispose();
      } else {
        JOptionPane.showMessageDialog(this.logonFrame, "用户名或密码错误!", "错误", JOptionPane.ERROR_MESSAGE);
      }
    } catch (Exception ex) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.