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