7 references to Insert
System.Windows.Forms (7)
winforms\Managed\System\WinForms\ToolStripItemCollection.cs (2)
347void IList.Insert(int index, object value) { Insert(index, value as ToolStripItem); } 533Insert(index,value);
winforms\Managed\System\WinForms\ToolStripManager.cs (4)
2003destinationItems.Insert(indexOfDestinationItem, source); 2020destinationItems.Insert(insertIndex, source); 2127historyItem.PreviousIndexCollection.Insert(Math.Min(historyItem.PreviousIndex, historyItem.PreviousIndexCollection.Count), historyItem.TargetItem); 2130historyItem.IndexCollection.Insert(Math.Min(historyItem.Index, historyItem.IndexCollection.Count), historyItem.TargetItem);
winforms\Managed\System\WinForms\ToolStripSettings.cs (1)
258toolStrip.Items.Insert(i, itemLocationHash[key].Items[key]);