VC++ 列表控件的使用方法
摘要:列表控件可以看作是功能增强的ListBox,它提供了四种风格,而且可以同时显示一列的多中属性值。MFC中使用CListCtrl类来封装列表控件的各种操作。通过调用BOOL Create( DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT ...
阅读全文
posted @
2014-09-15 13:56
BarneyX
阅读(830)
推荐(0)
我的第一个VC++程序
摘要:#include <windows.h>#include <stdio.h>LRESULT CALLBACK WinSunProc( HWND hwnd, // handle to window UINT uMsg, // message identifier WPARAM wParam, // first message parameter LPARAM lParam // second message parameter);int WINAPI WinMain( HINSTANCE hInstance, // handle to current ins...
阅读全文
posted @
2012-08-17 12:58
BarneyX
阅读(188)
推荐(0)