摘要:
using System; using System.Windows.Forms; using System.Runtime.InteropServices; using System.Reflection; namespace HookDll { public class HookDll { private KBDLLHOOKSTRUCT kbdllhs; private In... 阅读全文
摘要:
对于应用程序的换肤及子类化。下面是我尝试过一些方法,以在CAboutDlg中子类化其中的Button为例: 第一种:直接用现成的类 1、自己写一个类class CButtonXP : public CButton{/*...*/} 用MessageMap处理感兴趣的消息。 2、用CButtonXP代替CButton来声明变量m_btn; 3、在void CAboutDlg:DoDataE... 阅读全文