上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 25 下一页
摘要: 1 /* 首先将窗体的边框样式修改为None,让窗体没有标题栏 2 * 实现这个效果使用了三个事件:鼠标按下、鼠标弹起、鼠标移动 3 * 鼠标按下时更改变量isMouseDown标记窗体可以随鼠标的移动而移动 4 * 鼠标移动时根据鼠标的移动量更改窗体的location属性,实现窗体移动 5 * 鼠标弹起时更改变量isMouseDown标记窗体不可以随鼠标的移动而移动 6 */ 7 private bool isMouseDown = false; 8 private Point FormLocation; //form的location 9 private Point ... 阅读全文
posted @ 2012-12-28 11:19 宁静.致远 阅读(2606) 评论(1) 推荐(0) 编辑
摘要: 1 #region 2 public static void ToDownload() 3 { 4 string downloadPath = "f:/temp/eclipse-SDK-3.6.1-win32.zip"; 5 string savename = "eclipse-3.6.1.zip"; 6 ToDownloadOrOpen(downloadPath, savename, "attachment"); 7 //ToDownloadOrOp... 阅读全文
posted @ 2012-12-27 18:16 宁静.致远 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 1 /// <summary> 2 /// 时间格式转换 3 /// </summary> 4 public static void DateTimeToString() 5 { 6 DateTime dt = DateTime.Now; 7 Console.WriteLine(dt); 8 Console.WriteLine(dt.ToString("yyyy-M-dd h:m:ss")); //12小时制 9 C... 阅读全文
posted @ 2012-12-27 18:14 宁静.致远 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1 public static void Main() 2 { 3 /* 4 * 参数类型分为 in, ref, out 三种,默认为 in。 5 * in 类型在子方法中修改了对应变量后,主方法中的值不会发生改变。 6 * ref 类型在子方法中修改了对应变量后,主方法中的值也会发生改变。 7 * out 主方法中对应的变量不需要初始化。 8 * 9 */10 int a... 阅读全文
posted @ 2012-12-27 18:13 宁静.致远 阅读(229) 评论(0) 推荐(0) 编辑
摘要: View Code 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace ActionDelegate 7 { 8 delegate void OutputInfo(string str,int count); 9 10 class Program11 {12 private static string str = "hello world";13 private stati... 阅读全文
posted @ 2012-12-27 18:09 宁静.致远 阅读(155) 评论(0) 推荐(0) 编辑
摘要: View Code 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.IO; 6 7 namespace Files 8 { 9 class Program 10 { 11 static byte[] byDataValue = new byte[200]; 12 static char[] charDataValue = new char[200]; 13 ... 阅读全文
posted @ 2012-12-27 18:08 宁静.致远 阅读(216) 评论(0) 推荐(0) 编辑
摘要: View Code 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace Sort 7 { 8 class Tree 9 { 10 static void Main(string[] args) 11 { 12 BinarySearchTree nums = new BinarySearchTree(); 13 num... 阅读全文
posted @ 2012-12-27 18:06 宁静.致远 阅读(211) 评论(0) 推荐(0) 编辑
摘要: View Code 1 using System; 2 using System.IO; 3 using System.Net; 4 using System.Text; 5 using System.Security; 6 using System.Threading; 7 using System.Collections.Specialized; 8 using Sort; 9 10 namespace Sort 11 { 12 // <summary> 13 /// 记录下载的字节位置 14 /// </summary> 15 pub... 阅读全文
posted @ 2012-12-27 18:04 宁静.致远 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 1 #region 堆排序 2 /// <summary> 3 /// array是待调整的堆数组 4 /// i是待调整的数组元素的位置,length是数组的长度 5 /// </summary> 6 /// <param name="array"></param> 7 /// <param name="i"></param> 8 /// <param name="nLength"></param> 9 private static vo 阅读全文
posted @ 2012-12-27 18:02 宁静.致远 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1 #region KMP算法 2 /// <summary> 3 /// KMP算法 4 /// 求一个字符串的回溯函数。 5 /// 约定序列下标从0开始。 6 /// 回溯函数是整数集[0,n-1]到N的映射,n为字符串的长度。 7 /// 回溯函数的定义: 8 /// 设存在非空序列L,i为其合法下标; 9 /// L[i]的前置序列集为:{空集,L中所有以i-1为最后一个元素下标的子序列}10 /// L的前置序列集为... 阅读全文
posted @ 2012-12-27 18:01 宁静.致远 阅读(182) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 25 下一页