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 q
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.