会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
谁来弄死我?
博客园
首页
新随笔
联系
订阅
管理
1
2
3
下一页
2020年2月12日
温故知新之:反射:加载程序集中的类,动态调用
摘要: 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 钢的锅
阅读(220)
评论(0)
推荐(0)
2019年4月20日
C# 防止程序多开的两种方法
摘要: 转至: https://www.test404.com/post-713.html?wafcloud=1
阅读全文
posted @ 2019-04-20 23:49 钢的锅
阅读(2519)
评论(1)
推荐(0)
2019年4月9日
menuStrip1动态添加菜单及快捷键
摘要: 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 钢的锅
阅读(2145)
评论(0)
推荐(0)
2019年3月9日
dataGridView笔记
摘要: 最近用dataGridView比较多,先把代码备份在这里,有时间系统总结一下
阅读全文
posted @ 2019-03-09 21:28 钢的锅
阅读(284)
评论(0)
推荐(0)
2019年2月18日
语法之进化论之lambda表达式
摘要: 转至 杨中科教程
阅读全文
posted @ 2019-02-18 02:33 钢的锅
阅读(197)
评论(0)
推荐(0)
2019年2月3日
C# 模拟键盘操作SendKey(),SendKeys()
摘要: 模拟键盘输入就是使用以下2个语法实现的. SendKeys.Send(string keys); //模拟汉字(文本)输入SendKeys.SendWait(string keys); //模拟按键输入先了解一下2个语法的用法吧! 稍后贴出代码看看大家能不能看懂哦/... (1)每个按键由一个或多个
阅读全文
posted @ 2019-02-03 12:28 钢的锅
阅读(7113)
评论(0)
推荐(0)
2014年12月3日
android新窗口以及传值
摘要: 1,新建一个activity,如Activity2,在清单文件AndroidManifest.xml 中application节点中 增加一个新窗体:................. 2,在主程序中:Intent intent = new Intent(MainAct...
阅读全文
posted @ 2014-12-03 20:26 钢的锅
阅读(680)
评论(0)
推荐(0)
2012年12月11日
Jquery在线引用地址:
摘要: 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 钢的锅
阅读(79489)
评论(3)
推荐(5)
2012年10月24日
css 使div垂直、水平居中
摘要: 水平居中:<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 钢的锅
阅读(403)
评论(0)
推荐(0)
2012年9月22日
JS鼠标移动切换图片
摘要: <!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 钢的锅
阅读(7458)
评论(1)
推荐(0)
1
2
3
下一页
公告