gpt4 book ai didi

c# - 有什么方法可以检测用户控件外的鼠标点击吗?

转载 作者:可可西里 更新时间:2023-11-01 07:45:58 25 4
gpt4 key购买 nike

我正在创建一个自定义下拉框,我想在下拉框外单击鼠标时进行注册,以便将其隐藏。是否可以检测控件外的点击?或者我应该在包含表单上做一些机制并在打开任何下拉框时检查鼠标点击吗?

user control

最佳答案

所以我终于明白你只希望它在用户点击时关闭。在这种情况下,Leave event应该工作得很好......出于某种原因,我得到的印象是你希望它在他们将鼠标移出你的自定义下拉列表时关闭。 Leave 事件在您的控件失去焦点时引发,如果用户单击其他内容,它肯定会失去焦点,因为他们单击的内容获得了焦点。

文档还说这个事件会根据需要在控制链上上下级联:

The Enter and Leave events are hierarchical and will cascade up and down the parent chain until the appropriate control is reached. For example, assume you have a Form with two GroupBox controls, and each GroupBox control has one TextBox control. When the caret is moved from one TextBox to the other, the Leave event is raised for the TextBox and GroupBox, and the Enter event is raised for the other GroupBox and TextBox.

覆盖您的 UserControl 的 OnLeave 方法是处理此问题的最佳方法:

protected override void OnLeave(EventArgs e)
{
// Call the base class
base.OnLeave(e);

// When this control loses the focus, close it
this.Hide();
}

然后出于测试目的,我创建了一个显示下拉命令的 UserControl 的表单:

public partial class Form1 : Form
{
private UserControl1 customDropDown;

public Form1()
{
InitializeComponent();

// Create the user control
customDropDown = new UserControl1();

// Add it to the form's Controls collection
Controls.Add(customDropDown);
customDropDown.Hide();
}

private void button1_Click(object sender, EventArgs e)
{
// Display the user control
customDropDown.Show();
customDropDown.BringToFront(); // display in front of other controls
customDropDown.Select(); // make sure it gets the focus
}
}

一切都与上面的代码完美配合,除了一件事:如果用户单击窗体的空白区域,则 UserControl 不会关闭。嗯,为什么不呢?好吧,因为表单本身不需要焦点。只有控件才能获得焦点,我们没有点击控件。因为没有其他东西偷走焦点,所以从未引发 Leave 事件,这意味着 UserControl 不知道它应该自行关闭。

如果您需要 UserControl 在用户单击表单中的空白区域时自行关闭,您需要为此进行一些特殊情况处理。既然你说你只关心点击,你可以只处理表单的 Click 事件,并将焦点设置到不同的控件:

protected override void OnClick(EventArgs e)
{
// Call the base class
base.OnClick(e);

// See if our custom drop-down is visible
if (customDropDown.Visible)
{
// Set the focus to a different control on the form,
// which will force the drop-down to close
this.SelectNextControl(customDropDown, true, true, true, true);
}
}

是的,这最后一部分感觉像是一个 hack。正如其他人提到的,更好的解决方案是使用 SetCapture function指示 Windows 在 UserControl 的窗口上捕获鼠标。控件的 Capture property提供了一种更简单的方法来完成同样的事情。

关于c# - 有什么方法可以检测用户控件外的鼠标点击吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5701276/

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