⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 figuredlg.h

📁 这是有关计算机人工智能方面的资料
💻 H
字号:
/////////////////////////////////////////////////////////////////////////////
/*      工程:手写数字识别系统                                              */
/*      文件: FigureDlg.h : 头文件                                         */
/*      功能:与用户交互的对话框程序模块                                    */
/*      作者:陈海艺                                                        */
/*      时间: 2004-6-23                                                    */
/*     Email:Iorikingdom@hotmail.com                                       */
/////////////////////////////////////////////////////////////////////////////


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


// CFigureDlg 对话框
class CFigureDlg : public CDialog
{

// 构造
public:

	// 标准构造函数
	CFigureDlg(CWnd* pParent = NULL);	

    // 对话框数据
	enum { IDD = IDD_MY_DIALOG };
	
	// 用于手写识别的控件,是CInputBox的一个实例
	CInputWnd m_wndInput;

	// 反映结果
	CString m_strResult;

	// 相似度
	CString m_strError;

	//用于选择数字的组合框
	CComboBox m_wndComBox;

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


// 实现
protected:
	HICON m_hIcon;

	// 生成的消息映射函数
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	DECLARE_MESSAGE_MAP()
public:
	afx_msg void OnBnClickedOk();
	afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg void OnBnClickedClear();
	afx_msg void OnBnClickedTrain();
	afx_msg void OnBnClickedSampling();
	afx_msg void OnBnClickedRun();
};

⌨️ 快捷键说明

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