摘要: show()和hide()—隐藏显示 //show()和hide() hide()首先记住display的值,在将display设置为None $(function () { $("#panel h5.head").toggle(function () { $(this).next("div.content").hide(600); }, function () { $(this).next("div.content").show(600); }); ... 阅读全文
posted @ 2014-02-19 16:00 zxd543 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 设置屏幕按钮的快捷键方法:KeyPreview的属性设置为True //设置快捷键 private void TestMain_KeyDown(object sender, KeyEventArgs e) { if(e.Modifiers.Compa... 阅读全文
posted @ 2014-02-19 09:14 zxd543 阅读(295) 评论(0) 推荐(0) 编辑