VC++ MFC 创建新项目,终于跌跌撞撞的运行出来了一个Hello World

Microsoft Visual C++ 6.0

    打开编译器后选择File->New,然后选择Projects里的MFC AppWizard(exe),Project name写个名字,Create new workspace,点od
    然后选中Dialog based(基于对话框的应用程序),选择语言为中文,点Next,下一个窗体可以默认,点Next,下一个窗体里有How would you like to use the MFC Library?选择As a statically linked library,然后Next,以后一直点ok直到结束
    然后双击ResourcesView->Dialog->IDD_项目名称_Dialog,再双击确定按钮,填入方法名后得到一个单击按钮的事件
void CVideoTestDlg::OnJCYD() 
{
	// TODO: Add your control notification handler code here
}


在方法里写入
MessageBox("Hello World!");

void CVideoTestDlg::OnJCYD() 
{
	// TODO: Add your control notification handler code here
	MessageBox("Hello World!");
}


按叹号或者Ctrl+F5编译并运行,在单击确定按钮的时候会弹出一个写有Hello World的对话框

黑色头发:http://heisetoufa.iteye.com/

你可能感兴趣的:(C++,c,C#,mfc,vc++)