手机
当前位置:查字典教程网 >编程开发 >C语言 >Cocos2d-x UI开发之CCControlSwitch控件类使用实例
Cocos2d-x UI开发之CCControlSwitch控件类使用实例
摘要:CCControlSwitch是开关按钮,关于控件使用时的一些配置,请参见文章:UI开发之控件类-CCControlButton。以下的演示...

CCControlSwitch是开关按钮,关于控件使用时的一些配置,请参见文章:UI开发之控件类-CCControlButton。以下的演示中出现的key和value代表什么意思,知道的人说一声。

Cocos2d-x UI开发之CCControlSwitch控件类使用实例1

bool HelloWorld::init() { bool bRet = false; do { CC_BREAK_IF(! CCLayer::init()); //参数就不说了,看一下你的资源文件就明白了 CCControlSwitch * controlSwitch = CCControlSwitch::create( CCSprite::create("extensions/switch-mask.png"), CCSprite::create("extensions/switch-on.png"), CCSprite::create("extensions/switch-off.png"), CCSprite::create("extensions/switch-thumb.png"), CCLabelTTF::create("On", "Arial-BoldMT", 16), CCLabelTTF::create("Off", "Arial-BoldMT", 16)); //设置位置 controlSwitch->setPosition(ccp(240,160)); //这个函数对应初始时,开关的状态是开还是关。 controlSwitch->setOn(true); //这个函数对应开关能否使用。 controlSwitch->setEnabled(true); //添加事件监听 controlSwitch->addTargetWithActionForControlEvents(this,cccontrol_selector(HelloWorld::valueChanged), CCControlEventValueChanged); this->addChild(controlSwitch); bRet = true; } while (0); return bRet; } void HelloWorld::valueChanged(CCObject * pSender,CCControlEvent controlEvent) { CCControlSwitch * controlSwitch = (CCControlSwitch *)pSender; CCLog("click"); }

【Cocos2d-x UI开发之CCControlSwitch控件类使用实例】相关文章:

浅析c#中WebBrowser控件的使用方法

VC中Tab control控件的用法详细解析

C语言函数的递归和调用实例分析

C语言 解压华为固件的实例代码

C语言栈顺序结构实现代码

深入分析Visual C++进行串口通信编程的详解

变量定义与声明的区别详细解析

数组指针、指针数组以及二位数组的深入解析

如何用C语言生成简单格式的xml

函数指针的一些概念详解

精品推荐
分类导航