如何使用 TIdNotify

发布于 2024-12-18 05:12:30 字数 204 浏览 2 评论 0原文

我正在尝试使用 Indy 在 Delphi 2010 中编写线程应用程序。这两个对我来说都是新的,我正在努力同步 Vcl。我读过有关与 Vcl 同步、使用关键部分、TThread.Synchronize、TIdNotify 等的内容。 我想看看如何使用 TIdnotify 的示例。就我而言,我正在尝试从线程更新 TreeView。我搜索过群组/论坛,但没有成功。 任何例子将非常感激。 TIA

I am trying to write a threaded application in Delphi 2010 using Indy. Both of these are new to me and I am struggling with synchronising the Vcl. I have read about synchronising with the Vcl, using Critical Sections, TThread.Synchronize, TIdNotify etc.
I would like to see an example of how to use TIdnotify. In my case I am trying to update a TreeView from a thread. I have searched the groups/forums, but no success.
Any examples would be very much appreciated.
TIA

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

路还长,别太狂 2024-12-25 05:12:30
type
  TMyNotify = class(TidNotify)
  private
    FMyData: string;
  protected
    procedure DoNotify; override;
  end;

procedure TMyNotify.DoNotify;
begin
  FormMain.TreeView1.Items.Add(nil, FMyData);
end;

在你的主题中:

var
  MyNotify: TMyNotify;
begin
  MyNotify := TMyNotify.Create;
  MyNotify.FMyData := 'A new node';
  MyNotify.Notify;
type
  TMyNotify = class(TidNotify)
  private
    FMyData: string;
  protected
    procedure DoNotify; override;
  end;

procedure TMyNotify.DoNotify;
begin
  FormMain.TreeView1.Items.Add(nil, FMyData);
end;

And in your Thread:

var
  MyNotify: TMyNotify;
begin
  MyNotify := TMyNotify.Create;
  MyNotify.FMyData := 'A new node';
  MyNotify.Notify;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文