gpt4 book ai didi

c++ - 使用 C++ Win32 GUI 在窗口中显示文本

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:24:41 33 4
gpt4 key购买 nike

起初对不起我的英语:)

我有个小问题。

我有一个用 C++ 编写的程序,它解析 JavaScript 文件以查找一些关键字。

我有一个主窗口和一个主菜单,当你点击菜单->打开文件夹时,你需要选择你的文件夹。在此之后,我恢复了该文件夹中的所有文件以打开它,阅读它以找到我的关键字。当一切都完成后,我在子窗口中显示结果。我想添加一个显示文本的弹出窗口,如“正在加载,请稍候”,但我遇到了一个小问题。

这是我的代码:

// creating a "popup" display a text while loading
MainWindow::m_hwndResLoading = CreateWindow( "edit",
"",
WS_VISIBLE|ES_MULTILINE|ES_READONLY|WS_OVERLAPPED,
0,
0,
400,
200,
hwnd,
NULL,
NULL,
NULL);

// creating my str, and asking my m_hwndLoading to display my text
string loading = "Chargement";
SetWindowText(MainWindow::m_hwndResLoading,TEXT(loading.c_str()));

MainWindow::projectPath = path;

// this function find every files in a specified directory which is source code file
getAllFile(path);

// creating my childwindow which will contain the result of the files parsing
MainWindow::m_hwndRes = CreateWindow( "edit",
"",
WS_VISIBLE|WS_CHILD|WS_BORDER|
WS_VSCROLL|WS_HSCROLL|ES_MULTILINE|
ES_AUTOHSCROLL|ES_AUTOVSCROLL|ES_READONLY,
0,
0,
1000,
600,
hwnd,
NULL,
NULL,
NULL);

// create and instanciate my object
FileParser *fp;
fp = new FileParser();
string res = fp->init(files);

// close my loading "popup"
CloseWindow(MainWindow::m_hwndResLoading);

// display the result in my child window
SetWindowText(MainWindow::m_hwndRes,TEXT(res.c_str()));

当我运行应用程序时,当我打开新文件夹时,会显示我的“弹出窗口”,但没有加载文本。解析完成后,一切正常,弹出窗口关闭,子窗口填充结果。

我看到了,如果我评论这一行:

CloseWindow(MainWindow::m_hwndResLoading);

加载文本与结果同时显示。

有没有人有一点想法可以帮助我?

非常感谢

最佳答案

我认为问题在于缺少 (win32) 消息处理。我假设您的代码中某处有消息处理循环(如 TranslateMessageDispatchMessage 等)?

我认为你的问题是你没有处理弹出窗口创建和长时间加载例程之间的消息(在这种情况下可能是 REPAINT 消息)。这就是为什么您的弹出窗口不绘制并且应用程序卡住的原因。尝试在 CreateWindowFileParser::init 之间插入消息处理调用。

关于c++ - 使用 C++ Win32 GUI 在窗口中显示文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21134151/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com