共用方式為


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

序列化之命令的宣告名稱。

ownerType
Type

正要註冊命令的型別。

例外狀況

namenull

ownerTypenull

另請參閱

適用於

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

序列化之命令的宣告名稱。

ownerType
Type

正要註冊命令的型別。

inputGestures
InputGestureCollection

與命令關聯之筆勢的集合。

例外狀況

namenull

ownerTypenull

另請參閱

適用於