资源简介
程序使用TAB控件生成了3个Dialog,每个dialog上都有一个简单的MFC多线程实例,简单易懂,且有注释,是MFC多线程学习的好帮手,多线程传参数:传递窗口句柄等等
代码片段和文件信息
// Dialog1.cpp : implementation file
//
#include “stdafx.h“
#include “MultiThread11.h“
#include “Dialog1.h“
extern m_flag;
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDialog1 dialog
BOOL m_flag = TRUE;
CDialog1::CDialog1(CWnd* pParent /*=NULL*/)
: CDialog(CDialog1::IDD pParent)
{
//{{AFX_DATA_INIT(CDialog1)
//}}AFX_DATA_INIT
}
void CDialog1::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDialog1)
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDialog1 CDialog)
//{{AFX_MSG_MAP(CDialog1)
ON_BN_CLICKED(IDC_BUTTON1 OnButton1)
ON_BN_CLICKED(IDC_BUTTON2 OnButton2)
ON_BN_CLICKED(IDC_BUTTON3 OnButton3)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDialog1 message handlers
void ThreadFunc(LPVOID pParam)
{
CString strTime;
CDialog1 *dlg;
dlg = (CDialog1 *)pParam;
CTime time;
m_flag = TRUE;
while(m_flag)
{
time = CTime::GetCurrentTime();
strTime=time.Format(“%H:%M:%S“);
::SetDlgItemText(dlg->m_hWndIDC_EDIT1strTime);
// GetDlgItem(IDC_EDIT1)->setwindow
Sleep(1000);
}
ExitThread(1);
}
void CDialog1::OnButton1() //启动线程//传递的参数 是 窗口对象指针
{
// TODO: Add your control notification handler code here
hThread=CreateThread(NULL
0
(LPTHREAD_START_ROUTINE)ThreadFunc
this
0
&ThreadID);
GetDlgItem(IDC_BUTTON1)->EnableWindow(FALSE);
GetDlgItem(IDC_BUTTON2)->EnableWindow(TRUE);
}
void CDialog1::OnButton2()
{
// TODO: Add your control notification handler code here
m_flag = false;
GetDlgItem(IDC_BUTTON1)->EnableWindow(true);
GetDlgItem(IDC_BUTTON2)->EnableWindow(FALSE);
}
void CDialog1::OnButton3()
{
// TODO: Add your control notification handler code here
TerminateThread(hThread1);
GetDlgItem(IDC_BUTTON1)->EnableWindow(true);
GetDlgItem(IDC_BUTTON2)->EnableWindow(FALSE);
}
- 上一篇:C++项目源代码适合新手练手及参考
- 下一篇:华为C++语言编程规范
相关资源
- Osg3.4.1Earth2.8-Qt5.6-VC2013-X86-Release.rar
- FastReport VCL 6.4.0 D7-D10.3 Rio Full Source
- STM32仿造FX3U-14MT-2AD2DA1CAN.rar
- Effective C++ and More Effective C++全书签中
- VS-Vrep-813Vrep.rar
- tensorflow1.7.1_cpu_x64_vc14_release dll
- VS2010 Addin插件学习小Demo C++版本
- ADO连接数据库-基于mfc的简单实现
- MFC树形控件CTreeCtrl显示文件路径及文
- 利用MFC的Picture控件显示图像和视频
- NI measurementStudio 6.0的更新包
- AcRePort 2.7 中国式报表控件 最新版
- 编译好的boost-1.34.1
- OpenCV 4 Cookbook_ C++ 4th Edition.pdf Robert
- 新c++ cplusplus reference chm (完整版)
- Unity3D调用Native OpenGL渲染方式
- DirectShow实现视频播放以及摄像头视频
- PictureControl
- 《数值分析》(Numerical Recipes)3rd E
- Numerical.Recipes.C++数值算法 第二版中文
- 仿Wireshark抓包工具MFC实现
- vcredist x64 合集 含2005Sp1 2008 2010
- Dlg_OpenGL
-
Unreal Engine 4 sc
ripting with C++ Cookbook - Intel TBB Library
- OGRE嵌入MFC代码以及嵌入过程说明
- DirectX修复工具V3.8标准版
-
C++ PandoraBox-rali
nk-mt7620-xiaomi-mini-sq - Visual c++ 2010 Express中文版
- c-free5 IDE
评论
共有 条评论