摘要:
当flowLayoutPanel1内容过多时,可以设置竖条,当时当鼠标滚动时,里面的内容不会随着鼠标的滚动而滚动,这就要求我们自己写事件了: 宗旨:判断鼠标是不是在flowLayoutPanel1区域内,如果在,设置flowLayoutPanel1的垂直滚动距离 给winform窗体加一个mouse 阅读全文
摘要:
第二种 获取数据更为简单 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Text.RegularExpressions; using System.IO; namespace ConsoleApplicatio... 阅读全文
摘要:
在做项目的时候,经常需要使用数据库来查询或操作数据,按照“笨方法”,需要每一次写代码时,输入: SqlConnection cnn = new SqlConnection("server=.;database=class;user=sa;pwd=123");万一因为要换数据库,或者密码,账号更换,需 阅读全文
摘要:
(默认: true) 默认设置下,所有请求均为异步请求。如果需要发送同步请求,请将此选项设置为 false。注意,同步请求将锁住浏览器,用户其它操作必须等待请求完成才可以执行。 这个ajax请求则为同步请求,在没有返回值之前,alert(temp)是不会执行的。 如果async设置为:true,则不 阅读全文
摘要:
string path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory,"a.txt");//获得debug文件下a.txt的绝对路径 阅读全文
摘要:
1增 1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Linq; 5 using System.Text; 6 using System.Threading.Tasks; 7 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Xml; 7 8 namespace ConsoleApplication7 9 { 10 ... 阅读全文
摘要:
案例图片(winform) 阅读全文
摘要:
1、Directory是对文件夹进行的操作。 1 //CreateDirectory:创建一个新的文件夹 2 //Delete:删除 3 //Move:剪切 4 //Exist()判断指定的文件夹是否存在 5 6 //if (!Directory.Exists(@"C:\Users\SpringRa 阅读全文