随笔分类 -  Winform

摘要:Dump文件是进程的内存镜像。可以把程序的执行状态通过调试器保存到dump文件中。 Dump文件是用来给驱动程序编写人员调试驱动程序用的,这种文件必须用专用工具软件打开,比如使用WinDbg打开。 当我们的程序发布出去之后,在客户机上是无法跟踪自己代码的bug的,所以Dump(扩展名是 .dm... 阅读全文
posted @ 2015-02-04 14:30 chenlh 阅读(461) 评论(0) 推荐(0)
摘要:来源:http://blog.itpub.net/23109131/viewspace-630576想实现输入法切换:思路,找出当前系统所有输入法总个数,当前输入法在总输入法中的索引,通过改变索引值,来切换输入法void input(){ //变全角为半角的输入状态 this.... 阅读全文
posted @ 2014-06-23 10:16 chenlh 阅读(508) 评论(0) 推荐(0)
摘要:方法一://调用API[System.Runtime.InteropServices.DllImport("user32", CharSet = System.Runtime.InteropServices.CharSet.Auto, ExactSpelling = true)]public sta... 阅读全文
posted @ 2014-06-20 10:13 chenlh 阅读(6206) 评论(0) 推荐(0)