摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Reflection; 5 using System.Text; 6 7 //Net Reflector(收费)官方网址:h 阅读全文
posted @ 2020-02-12 05:22 钢的锅 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 转至: https://www.test404.com/post-713.html?wafcloud=1 阅读全文
posted @ 2019-04-20 23:49 钢的锅 阅读(2479) 评论(1) 推荐(0) 编辑
摘要: 1 public partial class FormMkTest : Form 2 { 3 public FormMkTest() 4 { 5 InitializeComponent(); 6 } 7 8 private void FormMkTest_Load(objec... 阅读全文
posted @ 2019-04-09 00:39 钢的锅 阅读(2050) 评论(0) 推荐(0) 编辑
摘要: 最近用dataGridView比较多,先把代码备份在这里,有时间系统总结一下 阅读全文
posted @ 2019-03-09 21:28 钢的锅 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 转至 杨中科教程 阅读全文
posted @ 2019-02-18 02:33 钢的锅 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 模拟键盘输入就是使用以下2个语法实现的. SendKeys.Send(string keys); //模拟汉字(文本)输入SendKeys.SendWait(string keys); //模拟按键输入先了解一下2个语法的用法吧! 稍后贴出代码看看大家能不能看懂哦/... (1)每个按键由一个或多个 阅读全文
posted @ 2019-02-03 12:28 钢的锅 阅读(6975) 评论(0) 推荐(0) 编辑
摘要: 1,新建一个activity,如Activity2,在清单文件AndroidManifest.xml 中application节点中 增加一个新窗体:................. 2,在主程序中:Intent intent = new Intent(MainAct... 阅读全文
posted @ 2014-12-03 20:26 钢的锅 阅读(670) 评论(0) 推荐(0) 编辑
摘要: 1. 很多网站都是使用这种方式引入,客户的浏览器可能已经缓存过了 jquery。可以直接调用本地的,速度更快… 2. Google code 使用了 cdn 技术在很多地方有节点服务器,加载 jquery 时绝对不会比在你服务器上加载慢,本地服务器除外 : ) 3. 可以节省服务器流量,降低服务器带宽压力 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> < 阅读全文
posted @ 2012-12-11 16:56 钢的锅 阅读(79457) 评论(3) 推荐(5) 编辑
摘要: 水平居中:<style>.juzhong{margin:0px auto; width:500px;}</style><div class=juzhong></div>垂直居中:<style>#mid{ position:absolute; top:50%; left:50%; margin:-150px 0 0 -150px; width:300px; height:300px; border:1px solid red; } </style><div id=mid></div> 注意,其中mar 阅读全文
posted @ 2012-10-24 15:42 钢的锅 阅读(400) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf- 阅读全文
posted @ 2012-09-22 00:31 钢的锅 阅读(7452) 评论(1) 推荐(0) 编辑