📄 findstockview.h
字号:
#if !defined(AFX_FINDSTOCKVIEW_H__B307A969_AC8D_4740_88FD_7405733B2398__INCLUDED_)
#define AFX_FINDSTOCKVIEW_H__B307A969_AC8D_4740_88FD_7405733B2398__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// FindStockView.h : header file
//
#include "DataStruct.h"
/////////////////////////////////////////////////////////////////////////////
// CFindStockView form view
#ifndef __AFXEXT_H__
#include <afxext.h>
#endif
class CFindStockView : public CFormView
{
protected:
CFindStockView(); // protected constructor used by dynamic creation
DECLARE_DYNCREATE(CFindStockView)
// Form Data
public:
//{{AFX_DATA(CFindStockView)
enum { IDD = IDD_DLG_SEARCH };
CListBox m_oListType;
CEdit m_oEditAll;
CListBox m_oListStocks;
//}}AFX_DATA
// Attributes
public:
CWinThread* m_pThread;
float m_Param[PARAM_MAX];
CStatic* m_oParamStatic[PARAM_MAX];
CEdit* m_oParamEdit[PARAM_MAX];
bool m_bSearching;
// Operations
public:
void stopSearch();
CString getParamStr(int nParamNo);
void GetParamCtrl(int nType);
void ShowStock(CString sStockCode, int nType) ;
int getParam(int nType);
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CFindStockView)
public:
virtual void OnInitialUpdate();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
virtual ~CFindStockView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
// Generated message map functions
//{{AFX_MSG(CFindStockView)
afx_msg void OnBtnStart();
afx_msg void OnBtnCopy();
afx_msg void OnSelchangeListType();
afx_msg void OnBtnSaveparam();
afx_msg void OnBtnStop();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_FINDSTOCKVIEW_H__B307A969_AC8D_4740_88FD_7405733B2398__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -