
GXT
iteye_20656
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
解决Gxt ComboBox控件设置值问题
问题代码: //初始化数据源 ListStore <ComBoModel> store = new ListStore <ComBoModel> (); store.add (new ComBoModel ("Android", "0")); store.add (new ComBoModel ("Smart","1")); store.add (new C2010-12-21 16:30:57 · 205 阅读 · 0 评论 -
如何让Dialog背景色透明
在做dialog对话框时,默认内容和边框的颜色不一致。个人感觉不太美观。 找到一个神奇的属性,可以其颜色一致。 如下: myDialog.setPlain(true); 参看API说明: /** * True to render the window body with a transparent background so that it * will ...2010-12-21 16:58:13 · 1135 阅读 · 0 评论 -
如何确定MessageBox哪个按钮被点击。
问题描述: 当弹出MessageBox时,通常在用户点击确认或者取消按钮时我们将会做不同的处理。 最开始我做法如下, if ("ok".equals(be.getButtonClicked().getText())) { Info.display("","你点击了确定按钮"); } else { Info.display("","你点击了取消按钮"); } ...2010-12-22 11:31:00 · 2444 阅读 · 0 评论