7 references to Name
PresentationFramework (6)
src\Framework\MS\Internal\Documents\DocumentGridContextMenu.cs (1)
254
menuItem.Name = "ViewerContextMenu_" + command.
Name
; // does not require localization
src\Framework\System\Windows\Automation\Peers\ButtonBaseAutomationPeer.cs (1)
53
string commandName = command.
Name
;
src\Framework\System\Windows\Input\Command\CommandConverter.cs (1)
197
return command.
Name
;
src\Framework\System\Windows\Input\Command\CommandValueSerializer.cs (3)
44
string localName = command.
Name
+ "Command";
77
return command.
Name
;
95
return typeSerializer.ConvertToString(command.OwnerType, context) + "." + command.
Name
+ "Command";
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.Commands.cs (1)
589
cmd => string.Equals(cmd, null != item.Command && item.Command is RoutedCommand ? ((RoutedCommand)item.Command).
Name
: item.Name)))