21 references to OwnerType
PresentationCore (8)
Core\CSharp\System\Windows\Input\Command\RoutedCommand.cs (4)
282if(OwnerType == typeof(ApplicationCommands)) 286else if(OwnerType == typeof(NavigationCommands)) 290else if(OwnerType == typeof(MediaCommands)) 294else if(OwnerType == typeof(ComponentCommands))
Core\CSharp\System\Windows\Input\Command\RoutedUICommand.cs (4)
98if(OwnerType == typeof(ApplicationCommands)) 102else if(OwnerType == typeof(NavigationCommands)) 106else if(OwnerType == typeof(MediaCommands)) 110else if(OwnerType == typeof(ComponentCommands))
PresentationFramework (13)
src\Framework\System\Windows\Input\Command\CommandConverter.cs (4)
84if (command != null && command.OwnerType != null && IsKnownType(command.OwnerType)) 195if (command != null && command.OwnerType != null && IsKnownType(command.OwnerType))
src\Framework\System\Windows\Input\Command\CommandValueSerializer.cs (9)
33if (command == null || command.OwnerType == null) 38if (CommandConverter.IsKnownType(command.OwnerType)) 45Type ownerType = command.OwnerType; 72if (null != command && null != command.OwnerType) 75if (CommandConverter.IsKnownType(command.OwnerType)) 95return typeSerializer.ConvertToString(command.OwnerType, context) + "." + command.Name + "Command"; 112if (command.OwnerType != null && !CommandConverter.IsKnownType(command.OwnerType)) 114return new Type[] { command.OwnerType };