7 implementations of Name
System (2)
compmod\system\componentmodel\Container.cs (1)
300public String Name
compmod\system\componentmodel\NestedContainer.cs (1)
173public String Name
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Control.cs (1)
18909public String Name {
winforms\Managed\System\WinForms\ToolStripControlHost.cs (1)
1153String ISite.Name {
System.Workflow.ComponentModel (3)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (2)
1286string System.ComponentModel.ISite.Name 1595public string Name { get { return string.Empty; } set { } }
Shared\XomlSerializationHelpers.cs (1)
473public string Name { get { return string.Empty; } set { } }
7 writes to Name
System.Windows.Forms (5)
winforms\Managed\System\WinForms\ColumnHeader.cs (1)
280Site.Name = value;
winforms\Managed\System\WinForms\Menu.cs (1)
158Site.Name = name;
winforms\Managed\System\WinForms\StatusBarPanel.cs (1)
293Site.Name = name;
winforms\Managed\System\WinForms\ToolBarButton.cs (1)
251Site.Name = name;
winforms\Managed\System\WinForms\ToolStripControlHost.cs (1)
1158owner.Site.Name = value;
System.Workflow.ComponentModel (2)
AuthoringOM\Design\DesignerHelpers.cs (2)
1368((IComponent)activity).Site.Name = name; 1379((IComponent)childActivity).Site.Name = ((IComponent)declaringActivity).Site.Name + "." + childActivity.Name; //the parent should have already been updated by now
37 references to Name
System (13)
compmod\system\componentmodel\Component.cs (1)
255return s.Name + " [" + GetType().FullName + "]";
compmod\system\componentmodel\ComponentCollection.cs (2)
61if (comp != null && comp.Site != null && comp.Site.Name != null && string.Equals(comp.Site.Name, name, StringComparison.OrdinalIgnoreCase)) {
compmod\system\componentmodel\Container.cs (2)
248if (s != null && s.Name != null 249&& string.Equals(s.Name, name, StringComparison.OrdinalIgnoreCase)
compmod\system\componentmodel\ExtendedPropertyDescriptor.cs (1)
118string providerName = site.Name;
compmod\system\componentmodel\MarshalByValueComponent.cs (1)
199return s.Name + " [" + GetType().FullName + "]";
compmod\system\componentmodel\NestedContainer.cs (1)
62ownerName = _owner.Site.Name;
compmod\system\componentmodel\ReferenceConverter.cs (1)
119string name = site.Name;
compmod\system\componentmodel\ReflectPropertyDescriptor.cs (2)
946if (site != null && site.Name != null) { 947name = site.Name;
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (1)
1606return site.Name;
compmod\system\componentmodel\TypeDescriptor.cs (1)
1903name = component.Site.Name;
System.Web.DataVisualization (1)
Common\Converters\DataManagerConverters.cs (1)
163 values.Add(comonent.Site.Name);
System.Web.Mobile (6)
UI\MobileControls\Design\Adapters\DesignerAdapterUtil.cs (1)
267id = control.Site.Name;
UI\MobileControls\Design\DeviceSpecificDesigner.cs (2)
197_ds.Site.Name, 209return String.Format(CultureInfo.CurrentCulture, _designTimeHTML, _ds.Site.Name, curChoice, message);
UI\MobileControls\Design\StyleSheetDesigner.cs (3)
549_styleSheet.Site.Name, 580_styleSheet.Site.Name, 593_styleSheet.Site.Name,
System.Windows.Forms (11)
winforms\Managed\System\WinForms\AxHost.cs (1)
5377string name = (ctl.Site != null) ? ctl.Site.Name : ctl.Name;
winforms\Managed\System\WinForms\Control.cs (2)
3400name = Site.Name; 13003name = this.Site.Name;
winforms\Managed\System\WinForms\DataGridViewColumn.cs (2)
856if (this.Site != null && !String.IsNullOrEmpty(this.Site.Name)) 858this.name = this.Site.Name;
winforms\Managed\System\WinForms\Design\ComponentEditorForm.cs (1)
260caption = SR.GetString(SR.ComponentEditorFormProperties, site.Name);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
928string compName = component.Site != null ? component.Site.Name : component.GetType().Name;
winforms\Managed\System\WinForms\PropertyGridInternal\SingleSelectRootGridEntry.cs (1)
208return site.Name;
winforms\Managed\System\WinForms\ToolStripControlHost.cs (1)
1155return owner.Site.Name;
winforms\Managed\System\WinForms\WebBrowserContainer.cs (1)
338string name = (ctl.Site != null) ? ctl.Site.Name : ctl.Name;
winforms\Managed\System\WinForms\WinFormsUtils.cs (1)
373result = component.Site.Name;
System.Windows.Forms.DataVisualization (1)
Common\Converters\DataManagerConverters.cs (1)
163 values.Add(comonent.Site.Name);
System.Workflow.ComponentModel (5)
AuthoringOM\Design\DesignerHelpers.cs (3)
1262writer.Write(component.Site.Name); 1379((IComponent)childActivity).Site.Name = ((IComponent)declaringActivity).Site.Name + "." + childActivity.Name; //the parent should have already been updated by now 1597name = site.Name;
AuthoringOM\Design\ReferenceService.cs (2)
354if (this.sitedComponent != null && this.sitedComponent.Site != null && this.sitedComponent.Site.Name != null) 356this.fullName = string.Format(CultureInfo.InvariantCulture, "{0}{1}", new object[] { this.sitedComponent.Site.Name, this.trailingName });