我无法在 Delphi 中重新绘制表单
我正在创建一个 Delphi 程序,并且我的程序中有以下代码:
begin
if edit1.Text='salam' then
begin
for i := 1 to 10 do
begin
progressbar1.Value := progressbar1.Value+1;
sleep(100);
end;
end;
end;
我想让进度条顺利移动。但这段代码不是这样的。
我应该怎么办?我想在睡觉后重新绘制表格。
I'm creating a Delphi program and i have this code in my program:
begin
if edit1.Text='salam' then
begin
for i := 1 to 10 do
begin
progressbar1.Value := progressbar1.Value+1;
sleep(100);
end;
end;
end;
I wanna have the progressbar moving smoothly. But this code isn't like that.
What should i do? I wanna repaint the form after sleep.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你应该这样做...
Windows 需要处理消息来重绘并知道你的应用程序没有被冻结,Application.ProcessMessages 就可以做到这一点。
You should do it like this...
Windows needs to process the messages to repaint and to know your app isn't frezzed, Application.ProcessMessages does that magic.