How to cancel any event in winforms?(如何取消winforms中的任何事件?)
问题描述
我想取消该函数范围内的事件.
I want to cancel an event from within that function scope.
例如.我按下按钮单击事件并在错误验证时,我想取消此事件.同样,我也想取消其他活动.
Eg. I pressed button click event and on false validation, I want to cancel this event. Likewise i want to cancel other events also.
我如何在 C# 中做到这一点
How can i do this in C#
推荐答案
视场景而定;在大多数情况下:而不是 cancel 事件,什么也不做,例如:
It depends on the scenario; in most cases: rather than cancel the event, just do nothing, for example:
private void SaveDataClicked(object sender, EventArgs args) {
if(!ValidateData()) return;
// [snip: code that does stuff]
}
或:
private void SaveDataClicked(object sender, EventArgs args) {
if(ValidateData()) {
// [snip: code that does stuff]
}
}
有些事件会暴露 CancelEventArgs(或类似的),允许通过 args 取消一些 外部 行为 - 形式 -关闭是最明显的例子(设置 e.Cancel = true;).
There are some events that expose a CancelEventArgs (or similar), allowing to to cancel some external behaviour via the args - form-closing being the most obvious example (set e.Cancel = true;).
请注意,在这种情况下,我不会在按钮上显示自动对话结果;当(如果)处理程序成功完成时手动应用.
Note that in this scenario I would not have an automatic dialog-result on the button; apply that manually when (if) the handler completes successfully.
这篇关于如何取消winforms中的任何事件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何取消winforms中的任何事件?
基础教程推荐
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- WPF 模态进度窗口 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
