- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在表中的组合方面遇到性能问题。当我启动应用程序时,一切都很好。我可以更改组合的值,并且表格的 react 还可以。但是当我清理 table 并重新填充它时,似乎出现了灾难性的性能损失。当我尝试从表中选择一行时,大约需要 1-2 秒才能选择它。当我点击“重置表”按钮 5-10 次时,行选择需要 5-6 秒。
首先我想我必须在使用后处理掉所有东西。但这并没有改变任何事情。我也用文本框尝试过。一样的问题。第一次性能达到可接受的水平。按重置按钮--> 性能非常糟糕
这里是这个问题的一个例子:
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.TableEditor;
import org.eclipse.swt.events.ModifyEvent;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableColumn;
import org.eclipse.swt.widgets.TableItem;
public class Test {
private static Table table;
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
table = new Table(shell, SWT.BORDER | SWT.V_SCROLL | SWT.H_SCROLL | SWT.FULL_SELECTION );
table.setHeaderVisible(true);
TableColumn column = new TableColumn(table, SWT.NONE);
column.setText("1");
column.setWidth(70);
column = new TableColumn(table, SWT.NONE);
column.setText("2");
column.setWidth(70);
column = new TableColumn(table, SWT.NONE);
column.setText("3");
column.setWidth(70);
fillTable();
Rectangle clientArea = shell.getClientArea();
table.setBounds(clientArea.x, clientArea.y, 250, 300);
shell.setSize(400, 400);
Button button = new Button(shell, SWT.PUSH);
button.setBounds(10, 320, 150, 25);
button.setText("Reset Table");
button.addSelectionListener(new SelectionListener(){
@Override
public void widgetDefaultSelected(SelectionEvent e) {
// TODO Auto-generated method stub
}
@Override
public void widgetSelected(SelectionEvent e) {
resetTable();
}
});
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
public static void addComboToCell(final int intgPEditCell) {
final TableEditor editor = new TableEditor(table);
// The editor must have the same size as the cell and must
// not be any smaller than 50 pixels.
editor.horizontalAlignment = SWT.LEFT;
editor.grabHorizontal = true;
editor.minimumWidth = 50;
// editing the second column
table.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
// Clean up any previous editor control
Control oldEditor = editor.getEditor();
if (oldEditor != null)
oldEditor.dispose();
// Identify the selected row
TableItem item = (TableItem) e.item;
if (item == null)
return;
// The control that will be the editor must be a child of the
// Table
Combo newEditor = new Combo(table, SWT.NONE);
// SWT.NONE);
newEditor.setText(item.getText(intgPEditCell));
newEditor.addModifyListener(new ModifyListener() {
public void modifyText(ModifyEvent me) {
Combo combo = (Combo) editor.getEditor();
editor.getItem()
.setText(intgPEditCell, combo.getText());
}
});
newEditor.setFocus();
editor.setEditor(newEditor, item, intgPEditCell);
}
});
}
public static void resetTable(){
TableItem[] tableItems = table.getItems();
for (int i = 0; i < tableItems.length; i++) {
tableItems[i].dispose();
}
Control[] children = table.getChildren();
for (int i = 0 ; i < children.length; i++) {
children[i].dispose();
}
table.removeAll();
fillTable();
}
public static void fillTable(){
for (int i = 0; i < 50; i++) {
TableItem item = new TableItem(table, 0);
item.setText(0, "0 Item " + i);
item.setText(1, "1 Item " + i);
item.setText(2, "2 Item " + i);
addComboToCell(0);
}
}
}
所以我的问题是如何在重新填充表格后提高性能?!我是不是忘记了什么或者做错了什么?谢谢
最佳答案
性能下降是由您添加的TableEditor
引起的。每行一个,它们都在监听表选择事件。因此,如果选择一个项目,则会激活 50 个 TableEditor
,并相互堆叠。除此之外,TableEditor
不会在 resetTable
中删除,因此每次选择重置按钮都会增加 50 个。
SWT 中 TableEditors 的概念是每列或每种编辑器类型都有一个编辑器。在适当的情况下,编辑器会移动到正确的位置,使用正确的值进行初始化,然后显示。
在您的情况下,需要将 addComboToCell ( 0 )
调用移至 main
方法(位于创建表之后的某个位置)。
关于java - 表中 SWT Combo 的性能不佳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28720822/
我以这种方式填充了组合框 foreach (Control c in this.Controls) { if (c is ComboBox) { (c as Co
我有一个像 items: { xtype: 'combo', id: 'combo', queryMode:
我正在尝试覆盖 vaadin-combo-box-overlay 元素中的背景颜色。 这是我要覆盖的 css,更具体地说是背景属性,来源取自 ( https://github.com/vaadin/v
如何固定组合框的大小(内容可能会更大,但组合大小应该是固定的)。现在我的组合大小是根据组合中的项目改变的。 我正在尝试获取类似于雅虎注册页面安全问题组合的内容: https://edit.yahoo.
在我的组合框中,我有这样的东西: displayTpl: Ext.create('Ext.XTemplate', '',
我将 WPF 与 MVVM 一起使用。问题是我有 Model 类说 Person 包含三个属性 PersonID、Name、Job。 View 模型包含 Person类(class)。 View 包含
我想在每次打开组合时加载组合的内容。所以我添加了如下代码: $("#CustomerCombo").on("click", function (e) { $.ajax({ ty
我想知道是否有人可以调整我的代码以获得我正在寻找的功能。我在这里遗漏了一些东西。我快到了。问题在于,当从列表中选择菜单项时,它不会向上移动而是重复。然后,如果我再次单击下拉此菜单,那么我将在菜单中获得
鉴于下面的代码可以正常工作,如何实现包含书面文字的提案,而不仅仅是以给定序列开头的提案? 我正在 SQL 中寻找类似“% LIKE%”的内容。例如,在写“car”时,我希望有人建议使用“verdure
我正在寻找一项小任务的解决方案。 我正在使用 SWT。 我有一个组合类(class): public class ComboBoxComponent extends Combo { priva
我有一个组合框,可以在用户选择一个值后立即将焦点转移到另一个表单元素,配置如下: new Ext.form.ComboBox({ // ... listeners: {
我正在尝试模拟一些我使用 SQL 而不是使用所有 Python 的代码。在这里得到一些帮助 CSV to Python Dictionary with all column names? 我现在可以将
如何从 SWT 组合下拉列表中获取数据引用?目前我需要从组合框中获取文本,然后遍历我的数据对象,直到找到一个与组合框报告的文本相同的文本。 Combo combo = new Combo( n
试图获取组合框的先前值。我尝试了“更改”事件,但它不起作用。如果我没记错的话,新的 extjs 4.0 不存在'beforeselect'。关于如何做到这一点的任何想法? 我知道我们可以使用 chan
我正在尝试以编程方式打开 Webix 组合控件的弹出窗口,但存在三个我无法克服的问题。 这是snippet代表他们: 弹出列表扩展到表单容器的宽度(可能当前的 combo.$view 是打开弹出窗口的
JFace 实体和它们包装的 SWT 控件之间有什么区别? ComboViewer -> Combo/CCommbo TableViewer -> Table ListViewer -> List 等
我的 SWT Combo 有很多项目,而下拉列表总是同时只显示 5 个项目。 (是的,我可以上下滚动以查看所有其他项目) 我希望下拉列表同时显示更多项目,例如同时 10 个项目。 如何制作下拉列表以同
我有一个组合,其中包含选择列表中的字符串列表。如果用户下拉字符串列表,某些前景色将为黑色(标准),而其他定义的字符串应为前景色绿色或红色。我该如何渲染才能达到这个目的?我认为必须用 ComboView
我想突出显示组合框中的文本 (org.eclipse.swt.widgets.Combo)。 例如,假设组合文本为“IP:6061”。我想强调“IP”。我怎样才能做到这一点? 最佳答案 这是一个可重复
我在 SWT 中有一个组合下拉菜单,并且一直在考虑根据某些条件为列表中的不同项目设置不同的颜色。我稍后再决定(即,如果字符串超过 5 个字符,则该项目应具有红色背景,否则应为绿色) 我设法更改了整个
我是一名优秀的程序员,十分优秀!