WPF 组合框搜索项

发布于 2024-11-07 19:23:56 字数 166 浏览 0 评论 0原文

有什么方法可以控制通过按键选择组合框中的项目时使用的间隔大小。例如,组合框包含 {"12,"2}:

按下 1 并快速按下 2。选择列表中的第一项。 按 1,等待几秒钟,然后按 2。选择第二个项目。

我想控制这个间隔,这样情况2更有可能选择 第一项..

问候, 弗雷德里克

Is there any way to control the size of the interval, that is used when selected an item in a combobox via keystrokes. E.g. a combox contains {"12,"2}:

Pushing 1 and quickly 2. Selects the first item in the list.
Pushing 1, wait a few seconds, push 2. Selects the second item.

I would like to control this interval, such that case 2 is more likely to select
the first item..

Regards,
Fredrik

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

像极了他 2024-11-14 19:23:56

这种行为受私有财产管辖,我怀疑你可以改变它。

// System.Windows.Controls.TextSearch
private TimeSpan TimeOut
{
    get
    {
        return TimeSpan.FromMilliseconds((double)(SafeNativeMethods.GetDoubleClickTime() * 2));
    }
}

正如您所看到的,这实际上取决于系统的 Doubleclick-Time。

This behavior is governed by a private property, i doubt that you can change it.

// System.Windows.Controls.TextSearch
private TimeSpan TimeOut
{
    get
    {
        return TimeSpan.FromMilliseconds((double)(SafeNativeMethods.GetDoubleClickTime() * 2));
    }
}

As you can see this is actually dependent on the system's Doubleclick-Time.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文