gpt4 book ai didi

c# - 条件委托(delegate)问题

转载 作者:行者123 更新时间:2023-11-30 19:49:51 24 4
gpt4 key购买 nike

假设我打开一个表单并希望在它关闭后向其附加一个命令。

FormZombie FormZombie = new FormZombie();
FormZombie.Show();
FormZombie.FormClose += delegate{Utilities.DoSomethingCool()};

如何让 Utilities.DoSomethingCool() 触发器仅根据 FormZombie 中发生的情况执行?

最佳答案

您可以将条件检查添加到您的委托(delegate)中:

FormZombie formZombie = new FormZombie(); 
formZombie.Show();
formZombie.FormClose +=
delegate
{
if (formZombie.AteEnoughBrains)
Utilities.DoSomethingCool();
};

关于c# - 条件委托(delegate)问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3301503/

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