Package fr.soleil.comete.swt.both

Examples of fr.soleil.comete.swt.both.ComboBox


        GridData textareaData = new GridData(150, 150);
        textareaData.verticalAlignment = GridData.BEGINNING;
        textareaString.setLayoutData(textareaData);

        // ComboBox
        comboString = new ComboBox(parent, SWT.NONE);
        comboString.setValueList(new String[] { "Un", "Deux", "Trois", "Quatre", "Cinq", "Six",
                "Sept", "Huit", "Neuf", "Dix" });
        GridData comboData = new GridData(150, 25);
        comboData.verticalAlignment = GridData.BEGINNING;
        comboString.setLayoutData(comboData);
View Full Code Here

TOP

Related Classes of fr.soleil.comete.swt.both.ComboBox

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.