xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" creationComplete="init(event)">
import mx.core.IVisualElement;
import mx.core.IVisualElementContai...
分类:
其他好文 时间:
2014-07-22 23:05:55
阅读次数:
338
epoll函数#include int epoll_create(int size)int
epoll_ctl(int epfd, int op, int fd, struct epoll_event *event)int epoll_wait(int
epfd,struct epoll_event...
分类:
其他好文 时间:
2014-05-06 00:21:30
阅读次数:
519
环境: cocos2d-x + lua 3.0beta2想使用CCNotification,
发现3.0已经替换为CCEvent, 晃了一眼设计,不错原来在C++ 上自己也实现了一套Event,因为不满意CCNotification
没有优先级,没有自定义分类(比如UI,Logic),不能携带数据,...
分类:
其他好文 时间:
2014-05-05 23:39:31
阅读次数:
1327
异常代码形式:严重: Exception occurred during processing
request: nulljava.lang.NullPointerException at
com.opensymphony.xwork2.util.LocalizedTextUtil.findText...
分类:
其他好文 时间:
2014-05-05 22:38:50
阅读次数:
527
一、load事件?12345678910111213141516 img - load
event loading...
测试,所有浏览器都显示出了“loaded”,说明所有浏览器都支持img的load事件。二、readystatechange事件?12345678910111213141...
分类:
编程语言 时间:
2014-05-04 12:02:50
阅读次数:
482
有时需要获取图片的尺寸,这需要在图片加载完成以后才可以。有三种方式实现,下面一一介绍。一、load事件 img - load event
loading... 测试,所有浏览器都显示出了“loaded”,说明所有浏览器都支持img的load事件。二、readystatechange事件 ...
分类:
编程语言 时间:
2014-05-03 22:18:43
阅读次数:
430
第八章 用户界面(四)
处理 WinForms 事件和事件模块
在第七章我们讨论过事件(Event)模块,它能够用于处理 WinForms 中的事件。当处理 WinForms 中的事件时,通常会遇到没有完全符合想要事件的情况。例如,当鼠标的左、右键单击时会触发MouseButton 事件,但是,我们可能只希望它响应鼠标左键的单击。这时,用 Event.filter 函数可...
分类:
其他好文 时间:
2014-05-03 20:52:28
阅读次数:
279
1、具体错误如下
2014-5-2 21:38:29 com.opensymphony.xwork2.util.logging.jdk.JdkLogger error
严重: Exception occurred during processing request: null
java.lang.NullPointerException
at com.you.file.upload.actio...
分类:
其他好文 时间:
2014-05-03 16:08:37
阅读次数:
353
一、先看看jdk提供的event包:public interface
EventListener:所有事件侦听器接口必须扩展的标记接口。package java.util;/** * A tagging interface
that all event listener interfaces mus...
分类:
编程语言 时间:
2014-05-02 00:25:21
阅读次数:
432
void GameLayer::ccTouchEnded(CCTouch *touch,CCEvent *event){
CCLog("end %f,%f",touchStartP.x,touchStartP.y);
if (openTouch) {
CCPoint touchEndP=touch->getLocation();...
分类:
其他好文 时间:
2014-04-30 22:33:40
阅读次数:
359