0

当我在选项卡控件中分配工具条上的按钮时,应用程序只是待机并且不会响应。这是我的代码:

    ToolStrip toolStrip_3 = new ToolStrip();
    toolStrip_3.setWidth100();
    toolStrip_3.setHeight("20px");
    toolStrip_3.setReverseOrder(true);

    ToolStripButton button = new ToolStripButton(CONSTANTS.notesAddButton_title());
    toolStrip_3.addButton(button);
    conflictLayout.addMember(toolStrip_3);

当我注释掉这一行时:

//conflictLayout.addMember(toolStrip_3);

该应用程序没有问题。

4

1 回答 1

0

尝试使用:

toolStrip_3.setHeight(20);

代替 :

toolStrip_3.setHeight("20px");
于 2012-05-02T12:20:55.530 回答