上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 50 下一页
2012年4月27日
摘要: EncryptFile:Form1.csView Code 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Windows.Forms; 9 using System.IO;10 using System.Security.Cryptography;11 12 namespa. 阅读全文
posted @ 2012-04-27 13:29 纳米程序员 阅读(292) 评论(0) 推荐(0) 编辑
摘要: Frm_Main.csView Code 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Windows.Forms; 9 using System.Runtime.InteropServices;10 11 namespace DragNoFrameForm12 {13 .. 阅读全文
posted @ 2012-04-27 11:56 纳米程序员 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 什么是猜想输入 当我们在使用查询应用时,输入某个关键字后文本框下面就会自动弹出跟此关键字相附的词组供我们选择,为我们节省了输入的时间,这就是猜想输入,例如:百度,谷歌,等等,如下图: 如上图所示,使用WinForm的TextBox实现了这样的效果,主要借助于TextBox的AutoCompleteMode和AutoCompleteSource以及AutoCompleteCustomSource属性。详细参数 AutoCompleteMode 获取或设置控制自动完成如何作用于TextBox的选项。 属性值 Append 将最可能的候选字符串的其余部分追加到现有的字符,并... 阅读全文
posted @ 2012-04-27 10:37 纳米程序员 阅读(370) 评论(0) 推荐(0) 编辑
摘要: Frm_Main.csView Code 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Text; 7 using System.Windows.Forms; 8 9 namespace MoveFontInForm10 {11 public partial class Frm_Main : Form12 {13 publ... 阅读全文
posted @ 2012-04-27 10:31 纳米程序员 阅读(647) 评论(0) 推荐(0) 编辑
摘要: Form1.csView Code 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Windows.Forms; 9 using System.IO; 10 using System.Security.Cryptography; 11 using Micro... 阅读全文
posted @ 2012-04-27 10:29 纳米程序员 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 课程表的最终效果具体方法如下:1.首先定义一个datatable,并添加列集,行集。一张课程表的表结构就出来了。(如上图表结构式4行8列)只有表有结构、有数据才可以绑到 datagridivew控件里。否则绑上了,也没得显示。 代码如下: int num , week ; // 周数节数,第二步的时候用得到。 DataTable dt = new DataTable("subject"); dt.Columns.Add("周数/节数", typeof(str... 阅读全文
posted @ 2012-04-27 10:28 纳米程序员 阅读(391) 评论(0) 推荐(0) 编辑
2012年4月26日
摘要: Frm_Main.csView Code 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Windows.Forms; 9 using System.Net.Sockets; 10 using System.Threading; 11 using Syste... 阅读全文
posted @ 2012-04-26 17:08 纳米程序员 阅读(1793) 评论(0) 推荐(0) 编辑
摘要: Frm_Main.csView Code 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Windows.Forms; 9 using System.Data.SqlClient; 10 11 namespace RefreshFormByChildFor... 阅读全文
posted @ 2012-04-26 17:06 纳米程序员 阅读(372) 评论(0) 推荐(0) 编辑
摘要: Frm_Main.csView Code 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Text; 7 using System.Windows.Forms; 8 using System.Runtime.InteropServices; 9 10 namespace FontForm11 {12 public partial class Frm_... 阅读全文
posted @ 2012-04-26 17:05 纳米程序员 阅读(244) 评论(0) 推荐(0) 编辑
摘要: Frm_Main.csView Code 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Text; 7 using System.Windows.Forms; 8 using System.Runtime.InteropServices; 9 10 namespace FlashWindowBar11 {12 public partial clas... 阅读全文
posted @ 2012-04-26 17:05 纳米程序员 阅读(291) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 50 下一页