1234567891011121314151617181920212223242526272829303132333435 |
- // SkinSBDemoDlg.h : header file
- //
- #pragma once
- #include "afxcmn.h"
- // CSkinSBDemoDlg dialog
- class CSkinSBDemoDlg : public CDialog
- {
- // Construction
- public:
- CSkinSBDemoDlg(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- enum { IDD = IDD_SKINSBDEMO_DIALOG };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- // Implementation
- protected:
- HICON m_hIcon;
- CBitmap m_bmScroll;
- CListCtrl m_ListCtrl;
- // Generated message map functions
- virtual BOOL OnInitDialog();
- afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
- afx_msg void OnPaint();
- afx_msg HCURSOR OnQueryDragIcon();
- DECLARE_MESSAGE_MAP()
-
- };
|