使用 CreateWindow 并向其添加按钮等?如何?
我意识到,经过这么长时间的 DirectX/OpenGL 应用程序编码,我对如何使用文本框、标签、命令按钮等基本表单对象创建窗口一无所知。
我可以使用 CreateWindow
功能很好,怎么样我可以向其中添加按钮、命令提示符和其他表单对象吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅创建窗口帮助。创建主窗口后,您可以通过向函数提供父 HWND 来创建子窗口。对于标准控件,您可以使用在按钮上定义的类名之一,例如编辑框的 EDIT 和按钮的 BUTTON。
举个例子:
或者您可以只创建一个对话框,然后使用 Visual Studio 的资源编辑器对其进行编辑(如果您有完整的 VS)。
Look at Create Window Help. Once you create your main window you can create child windows by providing the parent HWND to the function. For standard controls you use one of the class names defined at the button, like EDIT for an edit box and BUTTON for a button.
As an example:
Or you could just create a dialog box instead and edit it with Visual Studio's resource editor (if you have full VS that is).