嗨,我正在使用GXT如何把圖標放在GXT中按鈕的中心
我有一個帶有圖標的按鈕。
我想把Icon放在中間。
目前看起來像這樣。
按鈕的圖標是在左(因爲IconAlign.LEFT的)。
我想要它在中心。但是有沒有像IconAlign.CENTER
如果任何人有一個想法是什麼在code.Please共享添加
代碼
button.setIconAlign(IconAlign.LEFT);
button.setIcon(Resources.INSTANCE.modify());
button.setStyleName("project-Button");
CSS
.project-Button {
color: Black;
border: thin outset #FF6600;
font-family: Courier New, Century Gothic, Times New Roman, Verdana, Arial;
vertical-align: middle;
text-align: center;
background-color: White;
cursor: pointer;
}
預先感謝您
更新
public interface Resources extends ClientBundle {
public Resources INSTANCE = GWT.create(Resources.class);
@Source("Images/modify.png")
ImageResource modify();
}
根據您放置該CSS規則的位置,它可能由於混淆而無法應用。您可能需要像使用圖標一樣使用「ClientBundle」。 – enrybo 2013-04-10 19:12:06
我正在使用clientBundle .. Plz chk更新areai問題。 – NewCodeLearner 2013-04-11 08:34:31