RoutedUICommand 생성자

정의

RoutedUICommand 클래스의 새 인스턴스를 초기화합니다.

오버로드

RoutedUICommand()

RoutedUICommand 클래스의 새 인스턴스를 초기화합니다.

RoutedUICommand(String, String, Type)

지정된 설명 텍스트, 선언된 이름 및 소유자 형식을 사용하여 RoutedUICommand 클래스의 새 인스턴스를 초기화합니다.

RoutedUICommand(String, String, Type, InputGestureCollection)

지정된 설명 텍스트, 선언된 이름, 소유자 형식 및 입력 제스처를 사용하여 RoutedUICommand 클래스의 새 인스턴스를 초기화합니다.

RoutedUICommand()

RoutedUICommand 클래스의 새 인스턴스를 초기화합니다.

public:
 RoutedUICommand();
public RoutedUICommand ();
Public Sub New ()

추가 정보

적용 대상

RoutedUICommand(String, String, Type)

지정된 설명 텍스트, 선언된 이름 및 소유자 형식을 사용하여 RoutedUICommand 클래스의 새 인스턴스를 초기화합니다.

public:
 RoutedUICommand(System::String ^ text, System::String ^ name, Type ^ ownerType);
public RoutedUICommand (string text, string name, Type ownerType);
new System.Windows.Input.RoutedUICommand : string * string * Type -> System.Windows.Input.RoutedUICommand
Public Sub New (text As String, name As String, ownerType As Type)

매개 변수

text
String

명령에 대한 설명 텍스트입니다.

name
String

serialization할 명령의 선언된 이름입니다.

ownerType
Type

명령을 등록할 형식입니다.

예외

name이(가) null인 경우

ownerType이(가) null인 경우

추가 정보

적용 대상

RoutedUICommand(String, String, Type, InputGestureCollection)

지정된 설명 텍스트, 선언된 이름, 소유자 형식 및 입력 제스처를 사용하여 RoutedUICommand 클래스의 새 인스턴스를 초기화합니다.

public:
 RoutedUICommand(System::String ^ text, System::String ^ name, Type ^ ownerType, System::Windows::Input::InputGestureCollection ^ inputGestures);
public RoutedUICommand (string text, string name, Type ownerType, System.Windows.Input.InputGestureCollection inputGestures);
new System.Windows.Input.RoutedUICommand : string * string * Type * System.Windows.Input.InputGestureCollection -> System.Windows.Input.RoutedUICommand
Public Sub New (text As String, name As String, ownerType As Type, inputGestures As InputGestureCollection)

매개 변수

text
String

명령에 대한 설명 텍스트입니다.

name
String

serialization할 명령의 선언된 이름입니다.

ownerType
Type

명령을 등록할 형식입니다.

inputGestures
InputGestureCollection

명령과 연결할 제스처의 컬렉션입니다.

예외

name이(가) null인 경우

ownerType이(가) null인 경우

추가 정보

적용 대상