gpt4 book ai didi

C# 在 application.run() 之后执行代码

转载 作者:太空狗 更新时间:2023-10-29 18:28:06 25 4
gpt4 key购买 nike

我有一个与此类似的问题:How can I execute code after my form starts?

但是那里的解决方案对我不起作用,因为我没有运行表单,我运行的是单个自定义控件,它是一个监视事物的托盘图标。 (类似于 Dropbox 的图标,这是用户与程序的唯一界面)

当控件创建时,我应该如何运行代码? (必须在消息泵启动之后)

最佳答案

我认为您正在寻找 Application.Idle事件。

Occurs when the application finishes processing and is about to enter the idle state.

例如

Application.Idle += delegate { Console.WriteLine(Application.MessageLoop); };

// Output: true
Application.Run();

关于C# 在 application.run() 之后执行代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5209605/

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