当前位置:网站首页>vs2019 使用向导生成一个MFC应用程序
vs2019 使用向导生成一个MFC应用程序
2022-07-06 09:14:00 【imxlw00】
创建项目
选择mfc模板
配置项目
运行
类视图
双击类名即可跳转到类声明所在的.h文件
下面为类中的成员函数,双击即可跳转到相应的定义部分
消息处理的添加
在CMainFrame添加消息处理,程序并没有反应,需要在view层操作上述过程。
在消息列表中找到WM_LBUTTONDOWN消息,添加。
工程文件增加几处改变。
第一处:在框架类头文件中添加了鼠标左键消息函数的函数声明
第二处:在框架类cpp文件中添加了消息映射宏
第三处:在框架列cpp文件中添加了处理鼠标左键消息的函数定义
void CMFCTestView::OnLButtonDown(UINT nFlags, CPoint point)
{
// TODO: 在此添加消息处理程序代码和/或调用默认值
CView::OnLButtonDown(nFlags, point);
CString str;
str.Format(TEXT("x=%d , y=%d "), point.x, point.y);
MessageBox(str);
}
边栏推荐
- QT creator custom build process
- AI benchmark V5 ranking
- Use dapr to shorten software development cycle and improve production efficiency
- [recommended by bloggers] C MVC list realizes the function of adding, deleting, modifying, checking, importing and exporting curves (with source code)
- [AGC009D]Uninity
- Copie maître - esclave MySQL, séparation lecture - écriture
- Armv8-a programming guide MMU (2)
- AcWing 1298. Solution to Cao Chong's pig raising problem
- QT creator test
- 數據庫高級學習筆記--SQL語句
猜你喜欢
[free setup] asp Net online course selection system design and Implementation (source code +lunwen)
[蓝桥杯2017初赛]方格分割
Copie maître - esclave MySQL, séparation lecture - écriture
neo4j安装教程
安装numpy问题总结
Request object and response object analysis
Redis的基础使用
QT creator support platform
How to configure flymcu (STM32 serial port download software) is shown in super detail
【博主推荐】C# Winform定时发送邮箱(附源码)
随机推荐
MySQL master-slave replication, read-write separation
误删Path变量解决
Solve the problem of installing failed building wheel for pilot
Remember a company interview question: merge ordered arrays
JDBC原理
JDBC principle
自动机器学习框架介绍与使用(flaml、h2o)
SSM整合笔记通俗易懂版
Unable to call numpy in pycharm, with an error modulenotfounderror: no module named 'numpy‘
Generate PDM file from Navicat export table
AcWing 1294. Cherry Blossom explanation
L2-004 这是二叉搜索树吗? (25 分)
Redis的基础使用
软件测试-面试题分享
Postman uses scripts to modify the values of environment variables
AcWing 179.阶乘分解 题解
MySQL主從複制、讀寫分離
机器学习笔记-Week02-卷积神经网络
数数字游戏
[Thesis Writing] how to write function description of jsp online examination system