8 references to DoubleClickTime
System.Windows.Forms (4)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
5782&& (DateTime.Now.Ticks - _lastMouseClickInfo.TimeStamp) / 10000 <= SystemInformation.DoubleClickTime
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
2591if (delta < SystemInformation.DoubleClickTime)
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
2125get => SystemInformation.DoubleClickTime * 10000;
System\Windows\Forms\Controls\ToolStrips\ToolStripScrollButton.cs (1)
23private static readonly int s_autoScrollPause = SystemInformation.DoubleClickTime;
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ControlDesigner.cs (1)
2335int wait = SystemInformation.DoubleClickTime;
System\Windows\Forms\Design\ToolStripItemBehavior.cs (1)
371Interval = SystemInformation.DoubleClickTime
System.Windows.Forms.Tests (2)
System\Windows\Forms\SystemInformationTests.cs (2)
145int time = SystemInformation.DoubleClickTime; 147Assert.Equal(time, SystemInformation.DoubleClickTime);