Package de.eydamos.guiadvanced.form

Examples of de.eydamos.guiadvanced.form.Textbox


        // create "New name:" label at the left site above the GuiTextField
        addSubPart(new Label(20, 30, 0x404040, NEW_NAME));

        // create text field
        txt_backpackName = new Textbox(fontRendererObj, 20, 40, 200, 20);
        txt_backpackName.setFocused(true);
        txt_backpackName.setMaxStringLength(32);
        addSubPart(txt_backpackName);
    }
View Full Code Here

TOP

Related Classes of de.eydamos.guiadvanced.form.Textbox

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.