Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

RoutedUICommand Constructor (String^, String^, Type^, InputGestureCollection^)

 

Initializes a new instance of the RoutedUICommand class, using the specified descriptive text, declared name, owner type, and input gestures.

Namespace:   System.Windows.Input
Assembly:  PresentationCore (in PresentationCore.dll)

public:
RoutedUICommand(
	String^ text,
	String^ name,
	Type^ ownerType,
	InputGestureCollection^ inputGestures
)

Parameters

text
Type: System::String^

Descriptive text for the command.

name
Type: System::String^

The declared name of the command for serialization.

ownerType
Type: System::Type^

The type that is registering the command.

inputGestures
Type: System.Windows.Input::InputGestureCollection^

A collection of gestures to associate with the command.

Exception Condition
ArgumentNullException

text is null.

ArgumentNullException

name is null.

ArgumentException

The length of name is zero.

ArgumentException

ownerType is null.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft