53 writes to Name
System.Windows.Forms (37)
winforms\Managed\System\WinForms\BindingNavigator.cs (11)
163MoveFirstItem.Name = ch + "indingNavigatorMoveFirstItem"; 164MovePreviousItem.Name = ch + "indingNavigatorMovePreviousItem"; 165MoveNextItem.Name = ch + "indingNavigatorMoveNextItem"; 166MoveLastItem.Name = ch + "indingNavigatorMoveLastItem"; 167PositionItem.Name = ch + "indingNavigatorPositionItem"; 168CountItem.Name = ch + "indingNavigatorCountItem"; 169AddNewItem.Name = ch + "indingNavigatorAddNewItem"; 170DeleteItem.Name = ch + "indingNavigatorDeleteItem"; 171separator1.Name = ch + "indingNavigatorSeparator"; 172separator2.Name = ch + "indingNavigatorSeparator"; 173separator3.Name = ch + "indingNavigatorSeparator";
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (20)
1337this.printToolStripButton.Name = "printToolStripButton"; 1355this.zoomToolStripSplitButton.Name = "zoomToolStripSplitButton"; 1366this.autoToolStripMenuItem.Name = "autoToolStripMenuItem"; 1374this.toolStripMenuItem1.Name = "toolStripMenuItem1"; 1382this.toolStripMenuItem2.Name = "toolStripMenuItem2"; 1390this.toolStripMenuItem3.Name = "toolStripMenuItem3"; 1398this.toolStripMenuItem4.Name = "toolStripMenuItem4"; 1406this.toolStripMenuItem5.Name = "toolStripMenuItem5"; 1414this.toolStripMenuItem6.Name = "toolStripMenuItem6"; 1422this.toolStripMenuItem7.Name = "toolStripMenuItem7"; 1430this.toolStripMenuItem8.Name = "toolStripMenuItem8"; 1436this.separatorToolStripSeparator.Name = "separatorToolStripSeparator"; 1442this.onepageToolStripButton.Name = "onepageToolStripButton"; 1449this.twopagesToolStripButton.Name = "twopagesToolStripButton"; 1456this.threepagesToolStripButton.Name = "threepagesToolStripButton"; 1463this.fourpagesToolStripButton.Name = "fourpagesToolStripButton"; 1470this.sixpagesToolStripButton.Name = "sixpagesToolStripButton"; 1476this.separatorToolStripSeparator1.Name = "separatorToolStripSeparator1"; 1482this.closeToolStripButton.Name = "closeToolStripButton"; 1501this.pageToolStripLabel.Name = "pageToolStripLabel";
winforms\Managed\System\WinForms\ToolStripComboBox.cs (1)
55this.Name = name;
winforms\Managed\System\WinForms\ToolStripControlHost.cs (1)
67this.Name = name;
winforms\Managed\System\WinForms\ToolStripItem.cs (1)
213this.Name = name;
winforms\Managed\System\WinForms\ToolStripMenuItem.cs (1)
641menuItem.Name = this.Name;
winforms\Managed\System\WinForms\ToolStripProgressBar.cs (1)
43this.Name = name;
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
50this.Name = name;
System.Workflow.Activities (8)
Rules\Design\Dialogs\BasicBrowserDialog.Designer.cs (5)
134this.newRuleToolStripButton.Name = "newRuleToolStripButton"; 140this.editToolStripButton.Name = "editToolStripButton"; 146this.renameToolStripButton.Name = "renameToolStripButton"; 151this.toolStripSeparator1.Name = "toolStripSeparator1"; 157this.deleteToolStripButton.Name = "deleteToolStripButton";
Rules\Design\Dialogs\RuleSetDialog.Designer.cs (3)
174this.newRuleToolStripButton.Name = "newRuleToolStripButton"; 179this.toolStripSeparator1.Name = "toolStripSeparator1"; 185this.deleteToolStripButton.Name = "deleteToolStripButton";
System.WorkflowServices (8)
System\Workflow\Activities\Design\OperationPickerDialog.designer.cs (4)
67this.toolStripLabel1.Name = "toolStripLabel1"; 76this.importContractButton.Name = "importContractButton"; 83this.toolStripButton1.Name = "toolStripButton1"; 90this.addOperationButton.Name = "addOperationButton";
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.designer.cs (4)
136this.moveParameterDownButton.Name = "moveParameterDownButton"; 145this.moveParameterUpButton.Name = "moveParameterUpButton"; 153this.RemoveParameterButton.Name = "RemoveParameterButton"; 163this.addParameterButton.Name = "addParameterButton";
9 references to Name
System.Windows.Forms (9)
winforms\Managed\System\WinForms\ToolStripItemCollection.cs (3)
298if (WindowsFormsUtils.SafeCompareStrings(itemsToLookIn[i].Name, key, /* ignoreCase = */ true)) 396if (WindowsFormsUtils.SafeCompareStrings(this[lastAccessedIndex].Name, key, /* ignoreCase = */ true)) { 403if (WindowsFormsUtils.SafeCompareStrings(this[i].Name, key, /* ignoreCase = */ true)) {
winforms\Managed\System\WinForms\ToolStripMenuItem.cs (1)
641menuItem.Name = this.Name;
winforms\Managed\System\WinForms\ToolStripSettings.cs (5)
160itemNames.Append((toolStrip.Items[i].Name == null) ? "null" : toolStrip.Items[i].Name); 273if (!string.IsNullOrEmpty(item.Name)) { 274Debug.Assert(!itemLocationHash.ContainsKey(item.Name), "WARNING: ToolStripItem name not unique."); 275itemLocationHash[item.Name] = toolStrip;