Base:
method
ToString
System.ComponentModel.Component.ToString()
1 override of ToString
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ToolStripComboBox.cs (1)
598
public override string
ToString
() {
17 references to ToString
System.Windows.Forms (17)
winforms\Managed\System\WinForms\ToolStrip.cs (7)
2641
Debug.WriteLineIf(ToolStripItem.MouseDebugging.TraceVerbose, "firing mouse leave on " + lastMouseActiveItem.
ToString
());
3235
Debug.WriteLineIf(SelectionDebug.TraceVerbose, "[SelectDBG NotifySelectionChange] Notify selection change: " + item.
ToString
() + ": " + item.Selected.ToString());
3531
Debug.WriteLineIf(ToolStripItem.MouseDebugging.TraceVerbose, String.Format(CultureInfo.CurrentCulture, "Item to get mouse move: {0}", (item == null) ? "null" : item.
ToString
()));
3533
Debug.WriteLineIf(ToolStripItem.MouseDebugging.TraceVerbose, String.Format(CultureInfo.CurrentCulture, "This is a new item - last item to get was {0}", (lastMouseActiveItem == null) ? "null" : lastMouseActiveItem.
ToString
()));
3542
Debug.WriteLineIf(ToolStripItem.MouseDebugging.TraceVerbose, String.Format(CultureInfo.CurrentCulture, "Firing MouseEnter on: {0}", (lastMouseActiveItem == null) ? "null" : lastMouseActiveItem.
ToString
()));
3559
Debug.WriteLineIf(ToolStripItem.MouseDebugging.TraceVerbose, String.Format(CultureInfo.CurrentCulture, "Firing MouseMove on: {0}", (item == null) ? "null" : item.
ToString
()));
4463
Debug.WriteLineIf(LayoutDebugSwitch.TraceVerbose, item.
ToString
() + Items[j].Bounds);
winforms\Managed\System\WinForms\ToolStripComboBox.cs (1)
599
return base.
ToString
() + ", Items.Count: " + Items.Count.ToString(CultureInfo.CurrentCulture);
winforms\Managed\System\WinForms\ToolStripDropTargetManager.cs (2)
109
Debug.WriteLineIf(DragDropDebug.TraceVerbose, "ToolStripItem taking this: " + item.
ToString
());
164
Debug.WriteLineIf(DragDropDebug.TraceVerbose, "ToolStripItem taking this: " + item.
ToString
());
winforms\Managed\System\WinForms\ToolStripItem.cs (2)
3927
Debug.WriteLineIf(ToolStrip.SelectionDebug.TraceVerbose, String.Format(CultureInfo.CurrentCulture, "[Selection DBG] WBI.Unselect: {0}", this.
ToString
()));
4389
return "ToolStripItemAccessibleObject: Owner = " + Owner.
ToString
();
winforms\Managed\System\WinForms\ToolStripManager.cs (2)
1572
Debug.WriteLineIf(Control.ControlKeyboardRouting.TraceVerbose, "ToolStripManager.ProcessShortcut - found item on context menu: [" + item.
ToString
() + "]");
1664
Debug.WriteLineIf(Control.ControlKeyboardRouting.TraceVerbose, "ToolStripManager.ProcessShortcut - found item on toolstrip: [" + item.
ToString
() + "]");
winforms\Managed\System\WinForms\ToolStripMenuItem.cs (3)
1308
Debug.WriteLineIf(ToolStrip.MenuAutoExpandDebug.TraceVerbose && currentItem != value, "[MenuTimer.CurrentItem] changed: " + ((value == null) ? "null" : value.
ToString
()));
1337
Debug.WriteLineIf(ToolStrip.MenuAutoExpandDebug.TraceVerbose, "[MenuTimer.Transition] transitioning items " + fromItem.
ToString
() + " " + toItem.
ToString
());