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