rendered paste body// CounterDlg.h : Headerdatei//#pragma once// CCounterDlg Dialogfeldclass CCounterDlg : public CDialog{// Konstruktionpublic: CCounterDlg(CWnd* pParent = NULL); // Standardkonstruktor// Dialogfelddaten enum { IDD = IDD_COUNTER_DIALOG }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV-Unterstützung// Implementierungprotected: HICON m_hIcon; // Generierte Funktionen für die Meldungstabellen virtual BOOL OnInitDialog(); afx_msg void OnPaint(); afx_msg HCURSOR OnQueryDragIcon(); DECLARE_MESSAGE_MAP()public: afx_msg UINT OnNcHitTest(CPoint point); afx_msg void OnLButtonDown(UINT nFlags, CPoint point); afx_msg void OnLButtonUp(UINT nFlags, CPoint point); bool m_mousedown; };