Examples of UXTextArea


Examples of net.sourceforge.ztail.swtux.widgets.input.UXTextArea

        shell.dispose();
      }
    });
    UXFormLayoutUtil.setPosition(okBtn, null, 100, 100, null);
   
    UXTextArea area = new UXTextArea(shell);
    UXFormLayoutUtil.setTop(area, 0);
    UXFormLayoutUtil.setLeft(area, 0);
    UXFormLayoutUtil.setRight(area, 100);
    UXFormLayoutUtil.setBottom(area, okBtn, -5, SWT.TOP);
    StringBuilder sb = new StringBuilder();
    sb.append("Version: " + Configurer.system.getString("app.version"));
    sb.append(System.getProperty("line.separator"));
    sb.append("Author: " + Configurer.system.getString("app.author"));
    sb.append(System.getProperty("line.separator"));
    sb.append("License: GNU GPL v3");
    area.setInput(sb.toString());
    area.setEditable(false);
  }
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.