Visual C++下的界面设计

源代码在线查看: mainfrm.h

软件大小: 5623 K
上传用户: yeshuqin
关键词: Visual 界面设计
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include "ntray.h"
				
				
				class CMainFrame : public CFrameWnd
				{
				public:
					CMainFrame();
					virtual ~CMainFrame();
				
				protected:
					//{{AFX_VIRTUAL(CMainFrame)
					//}}AFX_VIRTUAL
				
					DECLARE_DYNCREATE(CMainFrame)
				
					//{{AFX_MSG(CMainFrame)
					afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
					afx_msg void OnHappy();
					afx_msg void OnUpdateHappy(CCmdUI* pCmdUI);
					afx_msg void OnSad();
					afx_msg void OnUpdateSad(CCmdUI* pCmdUI);
					afx_msg void OnAnimated();
					afx_msg void OnUpdateAnimated(CCmdUI* pCmdUI);
					//}}AFX_MSG
				  afx_msg LRESULT OnTrayNotification(WPARAM wParam, LPARAM lParam);
					DECLARE_MESSAGE_MAP()
				
				  CTrayNotifyIcon m_TrayIcon;
				  HICON m_hIcons[2];
				  BOOL m_bHappy;
				};
				
							

相关资源