FIX. The InitialDelay property of ToolTips does not work
The InitialDelay property of ToolTips does not work
Work Around:
ToolTip tooltip = new ToolTip();
tooltip.InitialDelay = 1000;
tooltip.Hide(this.radListView1);
this.tooltip.Show(DateTime.Now.ToString(), this.radListView1);