#-*-coding:utf-8-*-__author__='Administrator'importsysfromPyQt4importQtGui,QtCorerows="ABCD"choices=['apple','orange','banana']classDelegate(QtGui.QIt...
分类:
其他好文 时间:
2014-09-12 13:16:13
阅读次数:
546
框选多个item之后,用空格键可以勾选/去选多个item,效果如下图所示:http://oglop.gitbooks.io/pyqt-pyside-cookbook/list/img/checkbox_multi_toggle.gif#-*-coding:utf-8-*-#python:2.x__a...
分类:
其他好文 时间:
2014-09-12 11:48:33
阅读次数:
832
#-*-coding:utf-8-*-#python:2.x__author__='Administrator'#如上图要求:创建指定多个复选框,一种是通过QT设计器Designer,这种是在知情的情况下。另一种是通过配置文件读出来,或者从数据库中取出来,还有其他情况就需要动态创建#思路是循环列表,...
分类:
其他好文 时间:
2014-09-12 11:33:53
阅读次数:
436
Start from Difficulty 1:1, Remove specified elem from unsorted array: 2 pointers, one is to iterate all the elements in the array, the other is to inc...
分类:
编程语言 时间:
2014-09-11 23:46:42
阅读次数:
250
通过调用zen_get_products_base_price($products_id)获取原价,zen_get_products_special_price($products_id)获取特价,进而计算百分比。$display_normal_price = zen_get_products_ba...
分类:
其他好文 时间:
2014-09-11 22:17:02
阅读次数:
779
I have designed a component of a web system with my workmate. In detail, I am just a coder instead of a designer, as all of it are designed by my ma.....
分类:
其他好文 时间:
2014-09-11 20:51:42
阅读次数:
226
编程语言中的操作从最初的只有+, -, *, /, for 到后来的+=, -+, *=, /=, ++, --,?:再到最新的??, foreach in, Range, Match等的确实实在在地让我们Coding的更加简洁了。但是SQL语言从最初的只有SELECT, UPDATE, DELET...
分类:
编程语言 时间:
2014-09-11 10:49:01
阅读次数:
188
time模块 1 #-*- coding: utf-8 -*- 2 3 """ 4 #获取当前时间的时间戳(单位秒) 5 time.time() 6 7 #推迟指定秒数后再运行 8 time.sleep(N) 9 10 #将时间元组转换为时间戳11 time.mktime(t)12 13 #...
分类:
编程语言 时间:
2014-09-10 23:51:31
阅读次数:
295
Zen Cart 138 在PHP5.3环境下出现的Fatal error: Cannot redeclare date_diff() in includes/functions/functions_general.php错误的解决方法原因是在这个文件中已存在函数:date_diff()了,此时,我...
分类:
Web程序 时间:
2014-09-10 19:22:20
阅读次数:
212
近来有些东西需要监控报警发邮件,然后在网上找了点材料,自己写了一个简单发送邮件的脚本,主要就是运用python的smtplib模块,分享给大家看一下: #!/usr/bin/env python # -*- coding: utf-8 -*- #导入smtplib和MIMEText...
分类:
编程语言 时间:
2014-09-10 15:29:40
阅读次数:
235