请教在GWT GXT中如何自定义控件的css样式

2024-11-03 01:21:44
推荐回答(1个)
回答1:

参考下面代码:
Java代码
Button cancelButton = new Button("Cancel");
Button loginButton = new Button("Login");
loginButton.setStyleName("buttons");
===css====

Css代码
.gwt-button {
background: #EEEEFF;
color: #0000CC;
font-size: 12px;
}
.buttons {
background: #CCCCCC;
color: #333333;
font-size: 12px;
}