在哪里可以找到有关如何使用 Tiny 创建 UI 的信息?
或者也许有人知道另一个工具,而不是摆动可以帮助我创建 UI。
如预言机站点所述:
public static void main(String[] args) {
try {
// Set L&F
UIManager.setLookAndFeel(
new TinyLookAndFeel());
} catch (Exception e) {
// handle exception
e.printStackTrace();
}
new SwingApplication(); //Create and show the GUI.
}