gxt 主题

在使用gxt的时候,我们会注意到页面的主题,

如果我们想改变主题的时候应该进行相应的配置了:

在google中搜到了下面的内容:

http://tutorialsjava.com/2009/08/25/changing-the-theme-of-an-ext-gwt-application/

http://www.sencha.com/forum/showthread.php?95368-Problem-with-GXT-themes

通过在onModuleLoad中修改主题

写道
public void onModuleLoad() {
GXT.setDefaultTheme(Theme.BLUE, true);
......
}

 或者是在html中直接引用css

<link rel="stylesheet" type="text/css" href="themes/slate/css/xtheme-slate.css" />

 

但是其实还有另外的方法:

就是在*.gwt.xml中引用css

 <stylesheet src="../gxt/themes/slate/css/xtheme-slate.css"/>

 而我使用的就是在*.gwt.xml中引用该文件,实现加载css

你可能感兴趣的:(主题)