RoutedCommand 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 RoutedCommand 類別的新執行個體。
多載
RoutedCommand() |
初始化 RoutedCommand 類別的新執行個體。 |
RoutedCommand(String, Type) |
使用指定的名稱和擁有者類別,初始化 RoutedCommand 類別的新執行個體。 |
RoutedCommand(String, Type, InputGestureCollection) |
使用指定的名稱、擁有者型別和筆勢集合,初始化 RoutedCommand 類別的新執行個體。 |
RoutedCommand()
初始化 RoutedCommand 類別的新執行個體。
public:
RoutedCommand();
public RoutedCommand ();
Public Sub New ()
另請參閱
適用於
RoutedCommand(String, Type)
使用指定的名稱和擁有者類別,初始化 RoutedCommand 類別的新執行個體。
public:
RoutedCommand(System::String ^ name, Type ^ ownerType);
public RoutedCommand (string name, Type ownerType);
new System.Windows.Input.RoutedCommand : string * Type -> System.Windows.Input.RoutedCommand
Public Sub New (name As String, ownerType As Type)
參數
- name
- String
為序列化宣告的名稱。
- ownerType
- Type
註冊命令的類型。
例外狀況
name
為 null
。
ownerType
為 null
。
另請參閱
適用於
RoutedCommand(String, Type, InputGestureCollection)
使用指定的名稱、擁有者型別和筆勢集合,初始化 RoutedCommand 類別的新執行個體。
public:
RoutedCommand(System::String ^ name, Type ^ ownerType, System::Windows::Input::InputGestureCollection ^ inputGestures);
public RoutedCommand (string name, Type ownerType, System.Windows.Input.InputGestureCollection inputGestures);
new System.Windows.Input.RoutedCommand : string * Type * System.Windows.Input.InputGestureCollection -> System.Windows.Input.RoutedCommand
Public Sub New (name As String, ownerType As Type, inputGestures As InputGestureCollection)
參數
- name
- String
為序列化宣告的名稱。
- ownerType
- Type
正要註冊命令的型別。
- inputGestures
- InputGestureCollection
與這個命令關聯的預設輸入筆勢。
例外狀況
name
為 null
。