- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我是 java SWT 的新手,在放置标签时,我似乎无法使标签背景透明。我正在使用 eclipse luna SWT desine 形式。这是我的窗口的样子:
如你所见,所有的标签背景都是白色的。我应该怎么做才能使标签背景默认与窗口背景(灰色)相同(意思是 - 不是通过在运行时更改每个标签背景,这对我有用)。
它可能很简单,但我只是无法在谷歌上找到如何去做。这是我的代码:
import java.awt.Color;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
import org.eclipse.swt.SWT;
import org.eclipse.ui.forms.widgets.FormToolkit;
import org.eclipse.swt.widgets.Label;
import org.eclipse.wb.swt.SWTResourceManager;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.core.databinding.DataBindingContext;
import org.eclipse.core.databinding.observable.value.IObservableValue;
import org.eclipse.jface.databinding.swt.WidgetProperties;
import org.eclipse.core.databinding.beans.PojoProperties;
import org.eclipse.core.databinding.observable.Realm;
import org.eclipse.jface.databinding.swt.SWTObservables;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.layout.RowData;
import org.eclipse.swt.layout.FormLayout;
import org.eclipse.swt.layout.FormData;
import org.eclipse.swt.layout.FormAttachment;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.widgets.Canvas;
public class WinApp2 {
private DataBindingContext m_bindingContext;
protected Shell shell;
private Text destenation_ip;
private final FormToolkit formToolkit = new FormToolkit(Display.getDefault());
private Label lblDestenationPortIp;
private Label lblNewLabel;
private Text ammount_of_packets;
private Label lblNewLabel_1;
private Text sorce_ip;
private Text destenation_port;
private Text sorce_port;
private Label lblNewLabel_2;
private Label label;
private Label label_1;
private Label ammount_of_packets_info;
/**
* Launch the application.
* @param args
*/
public static void main(String[] args) {
Display display = Display.getDefault();
Realm.runWithDefault(SWTObservables.getRealm(display), new Runnable() {
public void run() {
try {
WinApp2 window = new WinApp2();
window.open();
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Open the window.
*/
public void open() {
Display display = Display.getDefault();
createContents();
shell.open();
shell.layout();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
}
/**
* Create contents of the window.
*/
protected void createContents() {
shell = new Shell();
shell.setBackgroundMode(SWT.INHERIT_DEFAULT);
shell.setSize(450, 306);
shell.setText("LAN Destroyer");
shell.setLayout(new FormLayout());
destenation_ip = new Text(shell, SWT.BORDER);
FormData fd_destenation_ip = new FormData();
destenation_ip.setLayoutData(fd_destenation_ip);
lblDestenationPortIp = new Label(shell, SWT.NONE);
lblDestenationPortIp.setAlignment(SWT.RIGHT);
FormData fd_lblDestenationPortIp = new FormData();
fd_lblDestenationPortIp.left = new FormAttachment(0, 351);
fd_lblDestenationPortIp.right = new FormAttachment(100, -10);
fd_lblDestenationPortIp.top = new FormAttachment(0, 35);
lblDestenationPortIp.setLayoutData(fd_lblDestenationPortIp);
lblDestenationPortIp.setBackground(SWTResourceManager.getColor(SWT.COLOR_LIST_SELECTION_TEXT));
formToolkit.adapt(lblDestenationPortIp, true, true);
lblDestenationPortIp.setText(":\u05E9\u05DC \u05D9\u05E2\u05D3 IP");
lblNewLabel = new Label(shell, SWT.NONE);
lblNewLabel.setAlignment(SWT.RIGHT);
FormData fd_lblNewLabel = new FormData();
fd_lblNewLabel.right = new FormAttachment(100, -10);
lblNewLabel.setLayoutData(fd_lblNewLabel);
formToolkit.adapt(lblNewLabel, true, true);
lblNewLabel.setText(":\u05DB\u05DE\u05D5\u05EA");
ammount_of_packets = new Text(shell, SWT.BORDER);
fd_destenation_ip.left = new FormAttachment(ammount_of_packets, 0, SWT.LEFT);
fd_destenation_ip.right = new FormAttachment(ammount_of_packets, -1, SWT.RIGHT);
FormData fd_ammount_of_packets = new FormData();
fd_ammount_of_packets.right = new FormAttachment(lblNewLabel, -68);
fd_ammount_of_packets.top = new FormAttachment(lblNewLabel, -3, SWT.TOP);
ammount_of_packets.setLayoutData(fd_ammount_of_packets);
formToolkit.adapt(ammount_of_packets, true, true);
Button nonstop_send = new Button(shell, SWT.CHECK);
fd_ammount_of_packets.left = new FormAttachment(0, 186);
nonstop_send.setAlignment(SWT.RIGHT);
nonstop_send.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
if(nonstop_send.getSelection()){
ammount_of_packets_info.setText("שולח ללא הפסקה");
ammount_of_packets_info.setBackground(SWTResourceManager.getColor(SWT.COLOR_DARK_GREEN));
ammount_of_packets.setEnabled(false);
}
else {
ammount_of_packets_info.setText("");
ammount_of_packets.setEnabled(true);
}
}
});
FormData fd_nonstop_send = new FormData();
fd_nonstop_send.top = new FormAttachment(lblNewLabel, 0, SWT.TOP);
fd_nonstop_send.right = new FormAttachment(ammount_of_packets, -9);
nonstop_send.setLayoutData(fd_nonstop_send);
formToolkit.adapt(nonstop_send, true, true);
nonstop_send.setText("\u05E9\u05DC\u05D7 \u05DC\u05DC\u05D0 \u05D4\u05E4\u05E1\u05E7\u05D4");
lblNewLabel_1 = new Label(shell, SWT.NONE);
fd_lblNewLabel.top = new FormAttachment(lblNewLabel_1, 6);
lblNewLabel_1.setAlignment(SWT.RIGHT);
FormData fd_lblNewLabel_1 = new FormData();
fd_lblNewLabel_1.right = new FormAttachment(100, -10);
fd_lblNewLabel_1.top = new FormAttachment(lblDestenationPortIp, 6);
lblNewLabel_1.setLayoutData(fd_lblNewLabel_1);
formToolkit.adapt(lblNewLabel_1, true, true);
lblNewLabel_1.setText(":\u05E9\u05DC \u05DE\u05E7\u05D5\u05E8 IP");
sorce_ip = new Text(shell, SWT.BORDER);
fd_destenation_ip.bottom = new FormAttachment(sorce_ip);
fd_lblNewLabel_1.left = new FormAttachment(sorce_ip, 29);
FormData fd_sorce_ip = new FormData();
fd_sorce_ip.top = new FormAttachment(0, 58);
fd_sorce_ip.left = new FormAttachment(0, 186);
fd_sorce_ip.right = new FormAttachment(100, -114);
sorce_ip.setLayoutData(fd_sorce_ip);
formToolkit.adapt(sorce_ip, true, true);
destenation_port = new Text(shell, SWT.BORDER);
fd_nonstop_send.left = new FormAttachment(destenation_port, 0, SWT.LEFT);
FormData fd_destenation_port = new FormData();
fd_destenation_port.top = new FormAttachment(0, 32);
fd_destenation_port.left = new FormAttachment(0, 40);
destenation_port.setLayoutData(fd_destenation_port);
formToolkit.adapt(destenation_port, true, true);
sorce_port = new Text(shell, SWT.BORDER);
sorce_port.setForeground(SWTResourceManager.getColor(SWT.COLOR_CYAN));
sorce_port.setBackground(SWTResourceManager.getColor(SWT.COLOR_YELLOW));
FormData fd_sorce_port = new FormData();
fd_sorce_port.top = new FormAttachment(lblNewLabel_1, -3, SWT.TOP);
fd_sorce_port.left = new FormAttachment(destenation_port, 0, SWT.LEFT);
sorce_port.setLayoutData(fd_sorce_port);
formToolkit.adapt(sorce_port, true, true);
lblNewLabel_2 = new Label(shell, SWT.NONE);
FormData fd_lblNewLabel_2 = new FormData();
fd_lblNewLabel_2.top = new FormAttachment(0, 35);
fd_lblNewLabel_2.left = new FormAttachment(destenation_port, 6);
lblNewLabel_2.setLayoutData(fd_lblNewLabel_2);
formToolkit.adapt(lblNewLabel_2, true, true);
lblNewLabel_2.setText(":\u05E4\u05D5\u05E8\u05D8");
label = new Label(shell, SWT.NONE);
label.setText(":\u05E4\u05D5\u05E8\u05D8");
FormData fd_label = new FormData();
fd_label.bottom = new FormAttachment(nonstop_send, -6);
fd_label.left = new FormAttachment(sorce_port, 6);
label.setLayoutData(fd_label);
formToolkit.adapt(label, true, true);
label_1 = new Label(shell, SWT.WRAP | SWT.SHADOW_IN);
FormData fd_label_1 = new FormData();
fd_label_1.top = new FormAttachment(ammount_of_packets, 20);
fd_label_1.left = new FormAttachment(0, 187);
label_1.setLayoutData(fd_label_1);
formToolkit.adapt(label_1, true, true);
label_1.setText(":\u05E1\u05D9\u05DB\u05D5\u05DD");
ammount_of_packets_info = new Label(shell, SWT.NONE);
ammount_of_packets_info.setBackground(SWTResourceManager.getColor(SWT.COLOR_DARK_MAGENTA));
FormData fd_ammount_of_packets_info = new FormData();
fd_ammount_of_packets_info.left = new FormAttachment(100, -158);
fd_ammount_of_packets_info.top = new FormAttachment(ammount_of_packets, 44);
fd_ammount_of_packets_info.right = new FormAttachment(100, -36);
ammount_of_packets_info.setLayoutData(fd_ammount_of_packets_info);
formToolkit.adapt(ammount_of_packets_info, true, true);
m_bindingContext = initDataBindings();
}
protected DataBindingContext initDataBindings() {
DataBindingContext bindingContext = new DataBindingContext();
//
return bindingContext;
}
}
谢谢!
最佳答案
您的问题是由 FormToolkit#adapt(Control, boolean, boolean)
引起的。在内部,此方法将背景颜色设置为工具包的背景颜色。
你可以通过调用来阻止:
formToolkit.setBackground(null);
关于java - 如何在 SWT 中使标签背景透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25188687/
我正在使用 CSS background: url(stuffhere.jpeg)对于我的背景,但是当你点击其他视频时,“元素”不是页面,背景不会改变。 我试过了 和 ,并尝试为#home 和#pr
这两个 CSS 属性有区别吗: background: none; background: transparent; 它们都有效吗? 应该使用哪一个,为什么? 最佳答案 它们之间没有区别。 如果您没有
csslint 警告回退背景(十六进制或 RGB)应该在 RGBA 背景之前。"evidence="background: rgba(0, 0, 0, 0.8);/* FF3+,Saf3+,Opera
我在我正在制作的新网站上使用 Flip 插件: http://www.concept-it.be/padre (点击联系人,然后点击电子邮件地址)。 正如你所看到的,当翻转开始后,div 的背景变成灰
有没有办法使用“前后”图像作为全尺寸背景?我想会很棒!我正在尝试将此类示例用作整页大小的图像; http://www.catchmyfame.com/2009/06/25/jquery-beforea
我认为答案是否定的,但是... 有没有办法说: background-size: contain 90% 所以它的作用正是 contain 会做的,但是然后将它调整得更小一些? 最佳答案 理想的解决方
将鼠标悬停在给定文本的每个字母上将更改文本的整个字体 + 正文背景颜色。我试过了,但我的尝试失败了。相反,字体只在被悬停的字母之后发生变化,我什至不知道如何从 div 选择器中影响正文背景颜色。 .h
我想给我的 UITableView 提供背景图片,所以我尝试了这个方法: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional
我正在尝试使用 Python 3.6 使用 PIL/Numpy(每个屏幕截图~0.01s)快速截取准备处理的屏幕截图。理想情况下,窗口不需要位于前台,即即使另一个窗口覆盖它,屏幕截图仍然成功。 到目前
我正在尝试做一些可能不可能的事情,但让我们看看你怎么想。这是我的代码: html { background: url(../img/pattern.png) repeat, url(../im
一位设计师想出了这种类型的背景,如下图所示。我想避免使用图像背景。因此,如果可以使用 CSS background 属性复制它,我会努力思考。 最底层只是一个线性渐变,没有问题。但是在其之上分层的圆形
当 TreeView(或应用程序)失去焦点时,如何更改所选 TreeViewItem 的背景。在这种情况下,默认情况下选定的项目具有浅灰色背景。 编辑:第一个答案后的尝试:但是找不到带有 Target
一位设计师想出了这种类型的背景,如下图所示。我想避免使用图像背景。因此,如果可以使用 CSS background 属性复制它,我会努力思考。 最底层只是一个线性渐变,没有问题。但是在其之上分层的圆形
我需要有一个带有 CSS 的背景作为附加的图像我不能让它与线性渐变一起工作。 我正在尝试以下操作,但我无法仅创建 1 个白色条纹。 div { background: #5cbcb0; bac
我有一个ListView,它有一个页眉和页脚。它们在 CardView 中的布局。以及其中必须为背景的内容列表。这是一张可以清楚看到的图片:我现在是这样的: 以及如何做: 我这样做了,ScrollVi
我目前有一个 DIV,其背景图像设置如下: background: url(../images/site/common/body-bannar-bkground.png) repeat 0 0; 如何
我有一个 slider ,需要在不使用 .style.backgroundImage 的情况下更改背景。那么我该如何通过向 slider 或其他东西添加一些类来做到这一点呢? 'use strict'
好的,所以在 photoshop 中,我创建了一个具有透明背景和一些文本的 8 位彩色图像。然后我创建了一个具有透明背景和一些文本的 16 位颜色的图像。 当我右键单击两个图像并转到属性时,它显示两个
我有一个问题困扰着我,我似乎在 Google 上找不到答案。我用一段代码创建了一个小型测试应用程序,它执行如下操作: 在 MainActivity 中,我创建了一个 SomeClass 的实例,它有一
我想做这个, 在 Android Studio 的预览中看起来不错,但在运行时我得到这个 正如您在屏幕开头看到的那样,颜色是白色,我想添加我自己的颜色,在本例中为绿色。 最初它使用的是 Cordina
我是一名优秀的程序员,十分优秀!