摘要: jdk的下载,安装,及环境变量配置 阅读全文
posted @ 2015-09-07 22:37 努力建设我的管道! 阅读(195) 评论(0) 推荐(0)
摘要: EditText 的属性 1. android:maxLength 最长输入长度 2. android:inputType 允许输入的类型 () 3. android:SingleLine = "false" 是否是单行输入 4. android:hint = "这里只能输入数字内容" 设置提示信息 5. android:drawableLeft = "@drawable/title" 输入框中前面图片信息 阅读全文
posted @ 2013-10-10 20:55 努力建设我的管道! 阅读(160) 评论(0) 推荐(0)
摘要: LinearLayout 控件,垂直显示各控件 一行一个显示,比较好控件。 用RelativeLayout多个控件会堆在一起 阅读全文
posted @ 2013-10-10 19:24 努力建设我的管道! 阅读(216) 评论(0) 推荐(0)
摘要: ================== 常用快捷键 ====================Ctrl + Shift + F 代码整理Ctrl + / 注释/取消注释================== 常用快捷键 ====================Ctrl+1快速修复(最经典的快捷键,就不用多说了)Ctrl+D:删除当前行Ctrl+Alt+↓复制当前行到下一行(复制增加)Ctrl+Alt+↑复制当前行到上一行(复制增加)Alt+↓当前行和下面一行交互位置(特别实用,可以省去先剪切,再粘贴了)Alt+↑当前行和上面一行交互位置(同上)Alt+←前一个编辑的页面Alt+→下... 阅读全文
posted @ 2013-10-09 19:15 努力建设我的管道! 阅读(231) 评论(0) 推荐(0)
摘要: 1.TreeNode的PopulateOnDemand="True"后节点就是动态从后台加载的.2.但是如果上层TreeView的EnableClientScript="false",就会导致页面Postback3.TreeView的TreeNodePopulate是PopulateOnDemand="True"并且TreeNode内已有数据才触发的4.TreeNode的Depth属性是指从根结点... 阅读全文
posted @ 2010-06-04 00:43 努力建设我的管道! 阅读(1326) 评论(1) 推荐(1)
摘要: 1 protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) 2 { 3 e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#FFC0C0'"... 阅读全文
posted @ 2006-12-09 16:51 努力建设我的管道! 阅读(225) 评论(0) 推荐(0)
摘要: 用ArrayList 来对DropDownList的数据绑定简要例子 阅读全文
posted @ 2006-12-08 23:11 努力建设我的管道! 阅读(521) 评论(1) 推荐(1)
摘要: 第一种方法:string s=abcdeabcdeabcde;string[] sArray=s.Split(c) ;foreach(string i in sArray) Console.WriteLine(i.ToString());输出下面的结果:abdeabdeabde 第二种方法:我们看到了结果是以一个指定的字符进行的分割。使用另一种构造方法对多个字符进行分割: string s=ab... 阅读全文
posted @ 2006-12-06 17:00 努力建设我的管道! 阅读(1164) 评论(0) 推荐(0)
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1using System; 2using System.IO; 3using System.Text; 4using System.Text.RegularExpressions; 5usi... 阅读全文
posted @ 2006-12-06 16:20 努力建设我的管道! 阅读(295) 评论(0) 推荐(0)
摘要: ASP.NET 常用函数 阅读全文
posted @ 2006-12-06 14:44 努力建设我的管道! 阅读(154) 评论(0) 推荐(0)