HwndSourceParameters 构造函数

定义

初始化 HwndSourceParameters 类的新实例。 请勿将无参数构造函数用于 HwndSourceParameters;请参见备注。

重载

HwndSourceParameters(String)

用指定的窗口名称初始化 HwndSourceParameters 类的新实例。

HwndSourceParameters(String, Int32, Int32)

用指定的窗口名称和初始大小初始化 HwndSourceParameters 类的新实例。

注解

重要

请勿使用默认 (无参数) 构造函数构造此结构的实例。 HwndSourceParameters由无参数构造函数创建的实例会导致HwndSourceParameters无法分配 WindowName (即使WindowName属性显示为可设置) 也是如此。 如果将此类实例作为构造函数的参数 HwndSource 应用,则生成的 HwndSource 无法显示窗口。

HwndSourceParameters(String)

用指定的窗口名称初始化 HwndSourceParameters 类的新实例。

public:
 HwndSourceParameters(System::String ^ name);
public HwndSourceParameters (string name);
new System.Windows.Interop.HwndSourceParameters : string -> System.Windows.Interop.HwndSourceParameters
Public Sub New (name As String)

参数

name
String

窗口的名称。

另请参阅

适用于

HwndSourceParameters(String, Int32, Int32)

用指定的窗口名称和初始大小初始化 HwndSourceParameters 类的新实例。

public:
 HwndSourceParameters(System::String ^ name, int width, int height);
public HwndSourceParameters (string name, int width, int height);
new System.Windows.Interop.HwndSourceParameters : string * int * int -> System.Windows.Interop.HwndSourceParameters
Public Sub New (name As String, width As Integer, height As Integer)

参数

name
String

窗口的名称。

width
Int32

以像素为单位的窗口宽度。

height
Int32

以像素为单位的窗口高度。

注解

不要为 widthheight 参数传递 0 (零) 。 尽管该方法最终会成功,但即使通过 0,也会对性能造成重大损失。

另请参阅

适用于