这次来看看 Qt Quick里的 DropShow(阴影) 和 InnerShadow(内阴影) 怎么使用……...
分类:
其他好文 时间:
2015-04-01 08:19:38
阅读次数:
251
在adobe的网站上,有几种debug版本http://www.adobe.com/support/flashplayer/downloads.html第一个是IE的插件,Download the Windows Flash Player 10.2 ActiveX control content d...
分类:
其他好文 时间:
2015-03-31 23:55:38
阅读次数:
210
quick 的状态机 真是使用简单,功能强大,记录一下使用方式便于以后使用
1:创建一个状态机StateMachine
(1) self.fsm_ = StateMachine.new()
(2)self:addComponent(“component.behavior.StateMachine”)
self.fsm_ = self:getComponent(...
分类:
系统相关 时间:
2015-03-31 18:05:22
阅读次数:
173
官方描述:在一个Qt Quick应用程序中可以使用线程了.Import Statement: import QtQuick .属性:source : url信号:message(jsobject msg)使用WorkerScript在一个新线程中执行操作.再后台执行操作是很有用的,主GUI线程也不....
分类:
其他好文 时间:
2015-03-31 12:42:28
阅读次数:
132
// function makeTemp($fileName="index",$ftype=0) { $tempPath="xx/xxxx/{$fileName}.html"; if(file_exists($tempPath)) { ...
分类:
其他好文 时间:
2015-03-31 12:38:31
阅读次数:
119
1.0 开启文件隐藏属性string fileName = "text.txt"; if (!File.Exists(fileName))//判断文件是否存在 { File.Create(fileName);//创建一个文本文...
Given a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and there exists one unique longest pa...
分类:
其他好文 时间:
2015-03-30 22:49:58
阅读次数:
162
Vasya has recently learned at school what a number’s divisor is and decided to determine a string’s divisor. Here is what he came up with.String a is the divisor of string b if and only if there exists...
分类:
其他好文 时间:
2015-03-30 18:51:43
阅读次数:
134
本篇文章是对MySQL游标的具体使用进行了详细的分析介绍,需要的朋友参考下测试表 level代码如下:create table test.level (name varchar(20));再 insert 些数据 ;初始化代码如下:drop procedure if exists useCursor...
分类:
数据库 时间:
2015-03-30 18:06:30
阅读次数:
171
if exists (select * from dbo.sysobjectswhere id = object_id(N'[dbo].[sp_who_lock]')and OBJECTPROPERTY(id, N'IsProcedure') = 1)drop procedure [dbo].[sp...
分类:
其他好文 时间:
2015-03-30 18:04:23
阅读次数:
118