_slient

导航

#

[置顶] c#学习

摘要: 本人学生一枚,将自己的平时积累的一些东西分享出来,不知道对不对,对的希望能帮助一些人,不对的还望高手不吝赐教,多多评论,多多指教! 阅读全文

posted @ 2016-01-09 17:39 _slient 阅读(169) 评论(0) 推荐(0)

2016年1月9日 #

c#图片浏览

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u... 阅读全文

posted @ 2016-01-09 17:24 _slient 阅读(1215) 评论(0) 推荐(0)

c#判断键盘按键

摘要: private void txtNo_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == 13) // 判断 按键的事件, 13 表示按下了 回车键 ... 阅读全文

posted @ 2016-01-09 17:21 _slient 阅读(2394) 评论(0) 推荐(0)

c#文件操作

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u... 阅读全文

posted @ 2016-01-09 17:11 _slient 阅读(321) 评论(0) 推荐(0)

c#杨辉三角

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u... 阅读全文

posted @ 2016-01-09 17:02 _slient 阅读(458) 评论(0) 推荐(0)

c#数据库编程

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Data.SqlClient;using System.Drawing;using Sys... 阅读全文

posted @ 2016-01-09 16:53 _slient 阅读(4831) 评论(0) 推荐(0)

c#获取数据库表中的值

摘要: int i=dataGridView3.RowCount -1 ; int j; for (j = 0; j < i; j++) { if (textBox1.Text.Trim() ... 阅读全文

posted @ 2016-01-09 16:48 _slient 阅读(1635) 评论(0) 推荐(0)

c#标签飘过

摘要: private void myMove() { label2.Left = label2.Left + 20; //当标签移除画面,重新复位 if (label2.Left > this.Width) ... 阅读全文

posted @ 2016-01-09 16:44 _slient 阅读(193) 评论(0) 推荐(0)

c#静态类在两个winform之间传递数据

摘要: public class ZTCD { public static string ZJZ = ""; public static string jg = ""; public static int CD = 0; public s... 阅读全文

posted @ 2016-01-09 16:41 _slient 阅读(1353) 评论(0) 推荐(0)

更换winform皮肤

摘要: Visual Studio 2005工具箱上右击选择“选择项”,慢慢等...在弹出的“选择工具箱项”选项卡中,点击“浏览”,找到IrisSkin2.dll存放的位置,双击, 你会发现多了个“SkinEngine”,确定。 将公共控件里的“SkinEngine”,拖到窗体上,将皮肤文件*.ssk在“解... 阅读全文

posted @ 2016-01-09 16:37 _slient 阅读(281) 评论(0) 推荐(0)