Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Eclipse Juno 中编写了一个 rcp 应用程序,并创建了一个带有修剪窗口的应用程序模型,该窗口包含一个带有一个透视图的透视图堆栈。此透视图包含一个带有两个部件堆栈的部件容器。每个零件堆栈包含一个零件。
如果我运行应用程序,每个部分都有一个我想禁用的最小化按钮。我怎么做 ?
您可以通过向.css 文件MPartStack中的选择器添加样式属性来隐藏 s 的最小化按钮:.MPartStack
MPartStack
.MPartStack
.MPartStack { swt-minimize-visible: false; }
(见:http: //garethcooper.com/2012/05/eclipse-4-css/)