21 references to OwnerType
PresentationCore (8)
System\Windows\Input\Command\RoutedCommand.cs (4)
244
if(
OwnerType
== typeof(ApplicationCommands))
248
else if(
OwnerType
== typeof(NavigationCommands))
252
else if(
OwnerType
== typeof(MediaCommands))
256
else if(
OwnerType
== typeof(ComponentCommands))
System\Windows\Input\Command\RoutedUICommand.cs (4)
88
if(
OwnerType
== typeof(ApplicationCommands))
92
else if(
OwnerType
== typeof(NavigationCommands))
96
else if(
OwnerType
== typeof(MediaCommands))
100
else if(
OwnerType
== typeof(ComponentCommands))
PresentationFramework (13)
System\Windows\Input\Command\CommandConverter.cs (4)
72
if (command != null && command.
OwnerType
!= null && IsKnownType(command.
OwnerType
))
179
if (command != null && command.
OwnerType
!= null && IsKnownType(command.
OwnerType
))
System\Windows\Input\Command\CommandValueSerializer.cs (9)
23
if (command == null || command.
OwnerType
== null)
28
if (CommandConverter.IsKnownType(command.
OwnerType
))
35
Type ownerType = command.
OwnerType
;
62
if (null != command && null != command.
OwnerType
)
65
if (CommandConverter.IsKnownType(command.
OwnerType
))
85
return $"{typeSerializer.ConvertToString(command.
OwnerType
, context)}.{command.Name}Command";
102
if (command.
OwnerType
!= null && !CommandConverter.IsKnownType(command.
OwnerType
))
104
return new Type[] { command.
OwnerType
};