Windows SDK 编程的一般步骤为: 1. 注册窗口类, 使用到的结构 WNDCLASSEX, 函数 RegisterClassEx. 2. 创建窗口, 函数 CreateWindowEx. 3. 消息循环, 结构 MSG, 函数 GetMessage, TranslateMessage, DispatchMessage. 4. 进入无限循环, 消息处理 :-) 下面是代码, 当然, 还有分析: #include <windows.h> //包含 Windows 相关的 API 函数 /…