Package ModalGUI

Examples of ModalGUI.GUITextfield


GUILabel tittle  = new GUILabel(20,10,"Login",GLOBAL.gui);

loginWindow.add(tittle);

loginUsername = new GUITextfield(20, 40, 100,
    15, GLOBAL.gui);
loginUsername.setText("");
loginUsername.setLabel("username");
loginUsername.setFocus(true);
loginUsername.isTexfieldActive = true;
loginUsername.isActive = true;
loginUsername.wasClicked= true;
loginWindow.add(loginUsername);


loginPassword = new GUITextfield(20, 60, 100,
    15, GLOBAL.gui);
loginPassword.setText("");
loginPassword.setLabel("password");
loginPassword.setPasswordMode(true);
loginWindow.add(loginPassword);
View Full Code Here

TOP

Related Classes of ModalGUI.GUITextfield

Copyright © 2018 www.massapicom. 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.