简体   繁体   English

win32项目设计师

[英]win32 project designer

anyone know of some good software that can help me design the form for my win32 project? 有谁知道一些可以帮助我为Win32项目设计表单的优秀软件?

or is there a way to get the form designer in visual c++ for win32 projects? 还是有办法在Win32项目的Visual C ++中获得表单设计器?

VS contains a dialog editor. VS包含一个对话框编辑器。 To access it add a resource (.rc) file to your project, open that file and select "Insert Dialog" from the Resource View context menu. 要访问它,请将资源(.rc)文件添加到您的项目中,打开该文件,然后从“资源视图”上下文菜单中选择“插入对话框”。

If you don't want to use a dialog from a resource file the only way you can go is just code the child windows creation and allocation by hand. 如果您不想使用资源文件中的对话框,那么唯一的方法就是手动编写子窗口的创建和分配代码。

IMO, there is no such form designer which is not part of an external library package. IMO,没有这样的表单设计器,它不是外部库程序包的一部分。 You will have to use a library which has a form designer with it eg, MFC/ATL/QT etc. 您将不得不使用带有表单设计器的库,例如MFC / ATL / QT等。

If you are doing pure Win32 application development without any external library, then I am afraid you will have to code everything by hand. 如果您要在没有任何外部库的情况下进行纯Win32应用程序开发,那么恐怕您将不得不手动编写所有代码。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM