摘要: using System.IO;这段代码会出现乱码 gb2312 编码的网页存下后出现乱码String path = "d:\\1.html"; StreamReader sr = new StreamReader(webBrowser1.DocumentStream,... 阅读全文
posted @ 2015-02-04 15:35 wolly 阅读(459) 评论(0) 推荐(0) 编辑
摘要: namespace test_gundong{ public partial class Form1 : Form { int current = 0; Timer timeDown = new Timer(); Ti... 阅读全文
posted @ 2015-02-04 09:26 wolly 阅读(2241) 评论(0) 推荐(0) 编辑
摘要: 关于C#中timer类 在C#里关于定时器类就有3个1.定义在System.Windows.Forms里2.定义在System.Threading.Timer类里3.定义在System.Timers.Timer类里System.Windows.Forms.Timer是应用于WinForm中的,他是通... 阅读全文
posted @ 2015-02-03 16:49 wolly 阅读(1066) 评论(0) 推荐(0) 编辑
摘要: 1。找到元素坐标;HtmlElement OffsetRectangle.X,Y属性可以知道坐标2。C#控制鼠标移动通过SetCursorPos(x,y)可以控制鼠标坐标using System;using System.Collections.Generic;using System.Compo... 阅读全文
posted @ 2015-02-03 11:22 wolly 阅读(1990) 评论(0) 推荐(0) 编辑
摘要: 添加一个timer1,为timer1的Tick事件写程序,具体实现方法,给个例子: int n = 0;//用于计数,此程序改变的也是这个值 private void timer1_Tick(object sender, EventArgs e)//每1000毫秒执行一次... 阅读全文
posted @ 2015-02-03 11:21 wolly 阅读(1444) 评论(0) 推荐(0) 编辑