首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

Ext学习札记04 - UI组件 - Component, Button

2012-10-27 
Ext学习笔记04 - UI组件 - Component, ButtonComponent ?在Ext中对常用的UI组件都进行了一系列的封装,而各

Ext学习笔记04 - UI组件 - Component, Button
Component

?

在Ext中对常用的UI组件都进行了一系列的封装,而各个组件都具有一些相同的属性或者事件,这些相同的属性被封装起来成为Component类,每个UI组件都继承Component类,可见Ext在面向对象方面有很好的实现。看一下Component中的定义:

?Ext学习札记04 - UI组件 - Component, Button?Ext学习札记04 - UI组件 - Component, Button?Ext学习札记04 - UI组件 - Component, Button ,和通常HTML中的Button明显不一样吧,EXT不但封装了UI Component中的属性、方法、事件,连显示的样式一样做了很好的封装,还有一点要啰嗦的,就是new 一个 Component 出来一定最后是以HTML对象表现出来的,这样浏览器才可以进行解析,也就是不管怎么花哨怎么变,最终的结果还得回到根儿上来。

?

?

?

来看Button中的一些常用的构造参数、属性、方法和事件:?

?

再看一个例子:

?Ext学习札记04 - UI组件 - Component, Button?Ext学习札记04 - UI组件 - Component, Button?Ext学习札记04 - UI组件 - Component, Button

?方法

setText:设置按钮上的名称

事件

click:当点击按钮时触发

好了,Button先到这里,当然上面所介绍的是最基础的部分,后面遇到问题再回来补充。

热点排行