我正在学习 GWT 小部件。我有一个简单的EntryPoint
类,我正在使用它添加一个小部件(切换按钮)。最初它正在工作。然后我刚刚添加了更改以更改按钮的属性。然后没有出现在特定的 HTML 中。我也做了一个干净的构建。
下面是我的onModuleLoad()
@Override
public void onModuleLoad()
{
// Create Instance for your Widget
ToggleButton aToggleButton = new ToggleButton("Normal State", "Clicked State");
// Apply required style as per your wish
aToggleButton.setPixelSize(50, 10);
aToggleButton.setTitle("My first Simple Widget");
// Add it to the panel of your wish
RootPanel.get().add(aToggleButton);
}
我是不是错过了什么。但我确信除了添加设置大小和标题的行之外我没有做任何事情。