gpt4 book ai didi

C# 如何触发 tabcontrol 特定选项卡中的关键事件?

转载 作者:太空宇宙 更新时间:2023-11-03 20:42:08 25 4
gpt4 key购买 nike

我的表单中有一个 tabControl1,其中包含三个名为 TabPage1、TabPage2 和 TabPage3 的 TabPage。

当 TabPage 2 获得焦点时,我需要引发一个键事件(用于导航的箭头键)。不应在其他 TabPage 中引发此事件。

有人知道吗?

最佳答案

在 Selected 事件处理程序上,您可以将发送者转换为适当的控件并检查它的名称。如果事件是从 TabPage2 生成的,您可以触发按键事件。

像这样

private void TabPage_Selected(object sender, EventArgs e)
{
TabPage source = sender as TabPage;
if(source.Name.equals("TabPage2"))
//Do whatever...
}

关于C# 如何触发 tabcontrol 特定选项卡中的关键事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2128711/

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