我正在使用 dev c++ 标准 Windows 应用程序模板,并且对 gui 编程完全陌生,我什至不知道从哪里开始。我在网上查看了示例,并尝试将 L"Edit" 添加到以下代码中:
hwnd = CreateWindowEx (
0, /* Extended possibilites for variation */
szClassName, /* Classname */
"Windows App", /* Title Text */
WS_OVERLAPPEDWINDOW, /* default window */
CW_USEDEFAULT, /* Windows decides the position */
CW_USEDEFAULT, /* where the window ends up on the screen */
544, /* The programs width */
375, /* and height in pixels */
HWND_DESKTOP, /* The window is a child-window to desktop */
NULL, /* No menu */
hThisInstance, /* Program Instance handler */
NULL /* No Window Creation data */
);
但是,当我尝试添加它时,它给了我这个错误。invalid conversion from const char*' to DWORD'
有没有什么地方可以让我只使用 dev c++ 来学习如何做到这一点?我实际上想从头开始学习如何做到这一点,并且不想使用构建器。对于那些使用 dev c++ 的人,我将如何将文本输入框添加到他们拥有的标准 Windows gui 模板中?