码迷,mamicode.com
首页 >  
搜索关键字:in section __text    ( 55715个结果
原创控件代码共享--日期选择控件
原创控件代码共享--日期选择控件 思路:实现日期年月日的选择 1、可以设定年的起止年份 2、排除不正确日期选择的可能 3、使用javascript实现控制 4、使用Text属性方便获取设置日期值 ================================= 代码如下: using System; using System.Collections; using System...
分类:其他好文   时间:2014-05-12 15:21:22    阅读次数:246
ubuntu忘记密码,无法sudo的解决方法
想要安装一个sublime Text Editor,发现需要root权限,而且sudo用户的密码输进去没有作用!@ubuntu 14.04 LTS这个时候怎么办呢?打开终端,在终端中使用sudo software-center sublime-text_build-3059_i386.deb才可以安...
分类:其他好文   时间:2014-05-12 11:27:33    阅读次数:356
【Javascript】JS获取ASP.NET CheckBoxList控件的Text和Value
由于在客户端用js是无法直接获取到ASP.NET的控件CheckboxList的值的,所以采用以下解解方案:服务器端代码: public void LoadAllTags() { var tagList = tagBO.GetAllTags(); ...
分类:编程语言   时间:2014-05-12 05:11:06    阅读次数:376
WPF异步调用
this.Dispatcher.BeginInvoke(new Action(()=> this.textBlock1.Text = DateTime.Now.ToString("HH:mm:ss fff"); }));
分类:其他好文   时间:2014-05-12 04:31:05    阅读次数:251
Android之TextView高级用法
功能: 1. 在TextView中显示图片,类似于含有表情图片的聊天 2.设置TextView的部分text可以点击说明: SpannableString 实现了CharSequence接口,可以将text的指定部分标记为CharacterStyle对象,如ImageSpan,Clickabl...
分类:移动开发   时间:2014-05-12 04:23:52    阅读次数:625
AFNetworking注意的地方
1.新版的操作的确十分给力2.url如果有中文一定要记得stringByAddingPercentEscapesUsingEncoding否则闪退3.如果服务端头是 text/html的接口manager.responseSerializer.acceptableContentTypes = [NS...
分类:Web程序   时间:2014-05-12 04:20:47    阅读次数:341
WPF更新数据源
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Wind...
分类:其他好文   时间:2014-05-12 04:19:45    阅读次数:244
封装实现JavaScript 文件的动态加载功能
function loadScript(url, callback){ var script = document.createElement ("script") script.type = "text/javascript"; if (script.readyState){ //IE script.onreadystatechange = function(){ if (script.read...
分类:编程语言   时间:2014-05-11 15:07:11    阅读次数:316
C# Socket服务端和客户端互相send和receive
服务端1usingSystem;2usingSystem.Collections.Generic;3usingSystem.Text;4usingSystem.Net.Sockets;5usingSystem.Net;6usingSystem.Threading;78namespaceControl...
分类:其他好文   时间:2014-05-11 04:28:28    阅读次数:329
31 属性
android:id 为控件指定相应的IDandroid:text 指定控件的文本,置尽量使用strings.xmlandroid:grivity 指定控件的基本位置 ,比如举重,居右,android:padding 指定控件的内边距,控件当中的内容android:singleLine 如果设置为真...
分类:其他好文   时间:2014-05-11 00:16:12    阅读次数:385
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!