我尝试了,它设置了一个新的简单边框。
我的简单代码是:
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
public class LabelBorder {
public static void main (String [] args) {
Display display = new Display ();
Shell shell = new Shell(display);
//here it makes simple border
Label label = new Label(shell, SWT.BORDER);
label.setSize(100,30);
label.setLocation(50, 50);
label.setText("I am a Label");
shell.setSize(300,300);
shell.open ();
while (!shell.isDisposed ()) {
if (!display.readAndDispatch ()) display.sleep ();
}
display.dispose ();
}
}
我想用标签和中心文字
制作圆角边框和一些颜色帮助我。
答案 0 :(得分:5)
这应该是一个很好的起点:
public static void main(String[] args)
{
final Display display = new Display();
final Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
shell.setText("StackOverflow");
final RoundedLabel label = new RoundedLabel(shell, SWT.NONE);
label.setText("This is a label");
shell.pack();
shell.open();
while (!shell.isDisposed())
{
if (!display.readAndDispatch())
{
display.sleep();
}
}
display.dispose();
}
private static class RoundedLabel extends Canvas
{
private String text = "";
private static final int MARGIN = 3;
public RoundedLabel(Composite parent, int style)
{
super(parent, style);
addPaintListener(new PaintListener()
{
@Override
public void paintControl(PaintEvent e)
{
RoundedLabel.this.paintControl(e);
}
});
}
void paintControl(PaintEvent e)
{
Point rect = getSize();
e.gc.fillRectangle(0, 0, rect.x, rect.x);
e.gc.drawRoundRectangle(MARGIN, MARGIN, rect.x - 2 * MARGIN - 1, rect.y - 2 * MARGIN - 1, MARGIN, MARGIN);
e.gc.drawText(text, 2 * MARGIN, 2 * MARGIN);
}
public String getText()
{
return text;
}
public void setText(String text)
{
this.text = text;
redraw();
}
@Override
public Point computeSize(int wHint, int hHint, boolean changed)
{
GC gc = new GC(this);
Point pt = gc.stringExtent(text);
gc.dispose();
return new Point(pt.x + 4 * MARGIN, pt.y + 4 * MARGIN);
}
}
看起来像这样:
随意玩边缘