如何在Smart GWT中删除窗口边框

时间:2013-02-13 04:23:46

标签: window smartgwt

我正在使用Smart GWT 3.1。窗口没有标题。因此它会留下不平的边框。我该如何摆脱边界?或者甚至制作所有尺寸的边框?

1 个答案:

答案 0 :(得分:2)

以下几行将解决您的问题:

setShowHeader(false);
setShowStatusBar(false);
setLayoutMargin(0); // to remove 4px gray border
setAttribute("styleName", "", true); // to remove 1px (rounded) outer border
setBodyStyle(""); // to remove 1px body border
setBodyColor(null); // to make background transparent

度过愉快的一天; - )