Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 C++,MFC 完全陌生。目前正在尝试使用按钮制作 GUI,并在按下按钮时显示“hello world”文本。我该怎么做?
谢谢
这是一个关于 MFC 的教程:
基本上,您需要:
1)创建一个按钮和一个编辑字段或标签(资源编辑器)
2)定义一个“OnClick”事件处理程序(类编辑器)
3) 事件处理程序标签上的“SetWindowText()”
此链接显示了步骤 2 和 3 的示例: