btnetscdlg.h

来自「Bug管理系统」· C头文件 代码 · 共 56 行

H
56
字号
// btnetscDlg.h : header file
//

#pragma once
#include "afxwin.h"
#include "BitMapWnd.h"

// CbtnetscDlg dialog
class CbtnetscDlg : public CDialog
{
// Construction
public:
	CbtnetscDlg(CWnd* pParent = NULL);	// standard constructor
	virtual ~CbtnetscDlg();

// Dialog Data
	enum { IDD = IDD_BTNETSC_DIALOG };

	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support


// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CbtnetscDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnSizing( UINT nSide, LPRECT lpRect);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

	void SaveBitmap(HBITMAP hbitmap);
	bool CheckIfSettingsComplete();
	HBITMAP m_hBitmap;
	CString m_strPassword;




public:
	void CaptureWindow(bool bForeground);
	CBitmapWnd m_ctlPict;
	afx_msg void OnBnClickedSend();
	afx_msg void OnBnClickedConfigure();
	CStatic m_ctlFileSaved;
	CButton m_btnSend;
	afx_msg void OnBnClickedForeground();
	afx_msg void OnBnClickedAll();

};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?