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