码迷,mamicode.com
首页 >  
搜索关键字:text    ( 52583个结果
C# 代码调整屏幕分辨率
usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Runtime.InteropServices;namespace解决分辨率{publicpartialclassForm1:Form{//保..
分类:Windows程序   时间:2016-10-08 20:50:46    阅读次数:246
https ssl
HTTPS(全称:Hyper Text Transfer Protocol over Secure Socket Layer),是以安全为目标的HTTP通道,简单讲是HTTP的安全版。即HTTP下加入SSL层,HTTPS的安全基础是SSL,因此加密的详细内容就需要SSL。 它是一个URI schem ...
分类:Web程序   时间:2016-10-08 20:18:44    阅读次数:268
SQL命令查询Oracle存储过程信息(代码内容等)
SELECT * FROM ALL_SOURCE where TYPE='PROCEDURE' AND TEXT LIKE '%0997500%'; --查询ALL_SOURCE中,(脚本代码)内容与0997500模糊匹配的类型为PROCEDURE(存储过程)的信息。根据GROUP BY TYPE  ...
分类:数据库   时间:2016-10-08 19:11:45    阅读次数:187
使用TextUtils.isEmpty简单化代码
如果让你判断一个文本框是否为空(null)或者没有任何值(length=0),你会怎么怎样去写代码,很多初学者可能会这样写: if(text==null || text.length==0) {........} 其实没有必要这么麻烦,在android的官方API中有更方便的解决方法:Returns ...
分类:其他好文   时间:2016-10-08 18:54:28    阅读次数:149
H5的新应用-指定视频的播放进度
———————————————————————————————— <script type="text/javascript"> //播放/暂停,采用同一个方法实现 function playPause(){ //获取视频DOM元素 var myVideo = document.getElement ...
分类:其他好文   时间:2016-10-08 16:23:06    阅读次数:191
Swiper之滑块2
对比之前Swiper滑块1来说,我们添加一下背景颜色来看看: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Swiper之滑块2</ ...
分类:其他好文   时间:2016-10-08 14:01:13    阅读次数:160
《转》Unity3D研究院之UGUI一个优化效率小技巧
无意间发现了一个小技巧。如下图所示,可以发现UGUI的Image组件的RaycastTarget勾选以后会消耗一些效率,为了节省效率就不要勾选它了,不仅Image组件Text组件也有这样的问题。 一般UI里也就是按钮才需要接收响应事件,那么大部分image和text是是不需要开RaycastTarg ...
分类:编程语言   时间:2016-10-08 13:39:29    阅读次数:186
Swiper之滑块4
最炫3D走一波: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Swiper之滑块3</title> <link rel="styl ...
分类:其他好文   时间:2016-10-08 13:34:42    阅读次数:147
c# 文件及目录操作类
18位长度的计时周期数: DateTime.Now.Ticks.ToString() 多数是收集而来,加上测试感觉很不错,分享一下或许有些帮助吧: 引用: [csharp] view plain copy using System; using System.Text; using System.I ...
分类:Windows程序   时间:2016-10-08 11:23:39    阅读次数:276
面向对象实战
<?php header("content-type:text/html;charset=utf8"); interface lidepeng{ public function lidepeng($name); } class depeng implements lidepeng{ private ...
分类:其他好文   时间:2016-10-08 09:30:41    阅读次数:157
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!