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
。