Implemented interface member:
property
Name
System.Windows.IFrameworkInputElement.Name
13 writes to Name
PresentationFramework (6)
MS\Internal\Documents\DocumentGridContextMenu.cs (2)
151
this.
Name
= "ViewerContextMenu";
222
menuItem.
Name
= $"ViewerContextMenu_{command.Name}"; // does not require localization
System\Windows\Controls\DocumentViewer.cs (1)
2074
fe.
Name
= "DocumentGrid";
System\Windows\Controls\FlowDocumentReader.cs (3)
1170
_pageViewer.
Name
= "PageViewer";
1180
_twoPageViewer.
Name
= "TwoPageViewer";
1190
_scrollViewer.
Name
= "ScrollViewer";
PresentationUI (7)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (7)
1096
menuItem.
Name
= _digSigSignMenuItemName;
1101
menuItem.
Name
= _digSigRequestSignersMenuItemName;
1106
menuItem.
Name
= _digSigShowSignatureSummaryMenuItemName;
1126
ZoomComboBox.
Name
= _zoomComboBoxName;
1138
PageTextBox.
Name
= _pageTextBoxName;
1831
newItem.
Name
= String.IsNullOrEmpty(name) ? String.Empty : name;
2432
canvas.
Name
= fixedPage.Name;
21 references to Name
PresentationFramework (11)
MS\Internal\TraceData.cs (1)
197
traceBuilder.AppendFormat("'{0}' (Name='{1}')", fe.GetType().Name, fe.
Name
);
System\Windows\Automation\Peers\DocumentPageViewAutomationPeer.cs (2)
55
if (!string.IsNullOrEmpty(owner.
Name
))
57
result = owner.
Name
;
System\Windows\Automation\Peers\FrameworkElementAutomationPeer.cs (1)
44
result = owner.
Name
;
System\Windows\Controls\VirtualizingStackPanel.cs (1)
12531
if (traceList == null && target.
Name
== _targetName)
System\Windows\Documents\TextStore.cs (1)
4998
if (traceList == null && target.
Name
== _targetName)
System\Windows\Navigation\NavigationService.cs (1)
702
if (string.Equals(name, fe.
Name
, StringComparison.OrdinalIgnoreCase))
System\Windows\Navigation\NavigationWindow.cs (1)
444
if ((root != null) && (root.
Name
== "NavigationBarRoot"))
System\Windows\StyleHelper.cs (3)
1833
string label = feContainer.
Name
;
1873
string label = feContainer.
Name
;
2086
string name = (walkNodeIsFE) ? feWalkNode.
Name
: fceWalkNode.Name;
PresentationUI (1)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (1)
2432
canvas.Name = fixedPage.
Name
;
ReachFramework (5)
Serialization\Manager\ReachSerializationUtils.cs (1)
900
string id = fe.
Name
;
Serialization\VisualTreeFlattener.cs (4)
501
if (fe != null && !String.IsNullOrEmpty(fe.
Name
) &&
512
if (_nameList.TryGetValue(fe.
Name
, out dummy) == false)
514
nameAttr = fe.
Name
;
515
_nameList.Add(fe.
Name
, 0);
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonTab.cs (1)
791
if (group != null && group.
Name
== groupName)
WindowsFormsIntegration (3)
System\Windows\Integration\ElementHostAutomationPeer.cs (1)
31
return _owner.
Name
;
System\Windows\Integration\WindowsFormsHost.cs (2)
485
Debug.WriteLineIf(_traceHandle.TraceVerbose, String.Format(CultureInfo.CurrentCulture, "WindowsFormsHost({0}): BuildWindowCore (parent=0x{1:x8})", this.
Name
, hwndParent.Handle.ToInt32()));
1056
Debug.WriteLineIf(WindowsFormsHost._traceLayout.TraceInfo, String.Format(CultureInfo.CurrentCulture, "WindowsFormsHost({0}): Layout invalidated (control='{1}',property='{2}')", _host.
Name
, compName, e.AffectedProperty));