HwndSource Constructores

Definición

Inicializa una nueva instancia de la clase HwndSource.

Sobrecargas

HwndSource(HwndSourceParameters)

Inicializa una nueva instancia de la clase HwndSource mediante el uso de una estructura que contiene los valores iniciales.

HwndSource(Int32, Int32, Int32, Int32, Int32, String, IntPtr)

Inicializa una nueva instancia de la clase HwndSource con un estilo de clase, un estilo, un estilo extendido, la posición de x-y, el nombre y la ventana primaria especificados.

HwndSource(Int32, Int32, Int32, Int32, Int32, Int32, Int32, String, IntPtr)

Inicializa una nueva instancia de la clase HwndSource con un estilo de clase, un estilo, un estilo extendido, la posición de x-y, el ancho, el alto, el nombre y la ventana primaria especificados.

HwndSource(Int32, Int32, Int32, Int32, Int32, Int32, Int32, String, IntPtr, Boolean)

Inicializa una nueva instancia de la clase HwndSource con un estilo de clase, un estilo, un estilo extendido, la posición de x-y, el ancho, el alto, el nombre y la ventana primaria especificados, e indicando si el tamaño de la ventana se ajusta automáticamente.

Comentarios

Importante

Este método no está disponible en la zona de seguridad de Internet.

HwndSource(HwndSourceParameters)

Inicializa una nueva instancia de la clase HwndSource mediante el uso de una estructura que contiene los valores iniciales.

public:
 HwndSource(System::Windows::Interop::HwndSourceParameters parameters);
[System.Security.SecurityCritical]
public HwndSource (System.Windows.Interop.HwndSourceParameters parameters);
public HwndSource (System.Windows.Interop.HwndSourceParameters parameters);
[<System.Security.SecurityCritical>]
new System.Windows.Interop.HwndSource : System.Windows.Interop.HwndSourceParameters -> System.Windows.Interop.HwndSource
new System.Windows.Interop.HwndSource : System.Windows.Interop.HwndSourceParameters -> System.Windows.Interop.HwndSource
Public Sub New (parameters As HwndSourceParameters)

Parámetros

parameters
HwndSourceParameters

Estructura que contiene los parámetros requeridos para crear la ventana.

Atributos

Comentarios

Importante

Este método no está disponible en la zona de seguridad de Internet.

Esta firma de constructor puede resultar más cómoda en determinadas situaciones, ya que la estructura predeterminada contiene algunos valores predeterminados iniciales adecuados.

Importante

Si usa esta firma, no use el constructor predeterminado HwndSourceParameters para construir la HwndSourceParameters estructura para el parameters valor. Debe usar el HwndSourceParameters constructor que le permite especificar un nombre de ventana inicial. Si usa el constructor predeterminado HwndSourceParameters y crea un HwndSource con él, eso HwndSource no se muestra porque un nombre de ventana inicial es un requisito de construcción para el HWND representado.

Se aplica a

HwndSource(Int32, Int32, Int32, Int32, Int32, String, IntPtr)

Inicializa una nueva instancia de la clase HwndSource con un estilo de clase, un estilo, un estilo extendido, la posición de x-y, el nombre y la ventana primaria especificados.

public:
 HwndSource(int classStyle, int style, int exStyle, int x, int y, System::String ^ name, IntPtr parent);
[System.Security.SecurityCritical]
public HwndSource (int classStyle, int style, int exStyle, int x, int y, string name, IntPtr parent);
public HwndSource (int classStyle, int style, int exStyle, int x, int y, string name, IntPtr parent);
[<System.Security.SecurityCritical>]
new System.Windows.Interop.HwndSource : int * int * int * int * int * string * nativeint -> System.Windows.Interop.HwndSource
new System.Windows.Interop.HwndSource : int * int * int * int * int * string * nativeint -> System.Windows.Interop.HwndSource
Public Sub New (classStyle As Integer, style As Integer, exStyle As Integer, x As Integer, y As Integer, name As String, parent As IntPtr)

Parámetros

classStyle
Int32

Estilos de clase Win32 para la ventana.

style
Int32

Estilos Win32 para la ventana.

exStyle
Int32

Estilos extendidos de Win32 para la ventana.

x
Int32

Posición del borde izquierdo de la ventana.

y
Int32

Posición del borde superior de la ventana.

name
String

Nombre de la ventana.

parent
IntPtr

nativeint

Identificador de la ventana primaria de la ventana.

Atributos

Comentarios

Importante

Este método no está disponible en la zona de seguridad de Internet.

Se aplica a

HwndSource(Int32, Int32, Int32, Int32, Int32, Int32, Int32, String, IntPtr)

Inicializa una nueva instancia de la clase HwndSource con un estilo de clase, un estilo, un estilo extendido, la posición de x-y, el ancho, el alto, el nombre y la ventana primaria especificados.

public:
 HwndSource(int classStyle, int style, int exStyle, int x, int y, int width, int height, System::String ^ name, IntPtr parent);
[System.Security.SecurityCritical]
public HwndSource (int classStyle, int style, int exStyle, int x, int y, int width, int height, string name, IntPtr parent);
public HwndSource (int classStyle, int style, int exStyle, int x, int y, int width, int height, string name, IntPtr parent);
[<System.Security.SecurityCritical>]
new System.Windows.Interop.HwndSource : int * int * int * int * int * int * int * string * nativeint -> System.Windows.Interop.HwndSource
new System.Windows.Interop.HwndSource : int * int * int * int * int * int * int * string * nativeint -> System.Windows.Interop.HwndSource
Public Sub New (classStyle As Integer, style As Integer, exStyle As Integer, x As Integer, y As Integer, width As Integer, height As Integer, name As String, parent As IntPtr)

Parámetros

classStyle
Int32

Estilos de clase Win32 para la ventana.

style
Int32

Estilos Win32 para la ventana.

exStyle
Int32

Estilos extendidos de Win32 para la ventana.

x
Int32

Posición del borde izquierdo de la ventana.

y
Int32

Posición del borde superior de la ventana.

width
Int32

Ancho de la ventana.

height
Int32

Alto de la ventana.

name
String

Nombre de la ventana.

parent
IntPtr

nativeint

Identificador de la ventana primaria de la ventana.

Atributos

Comentarios

Importante

Este método no está disponible en la zona de seguridad de Internet.

Se aplica a

HwndSource(Int32, Int32, Int32, Int32, Int32, Int32, Int32, String, IntPtr, Boolean)

Inicializa una nueva instancia de la clase HwndSource con un estilo de clase, un estilo, un estilo extendido, la posición de x-y, el ancho, el alto, el nombre y la ventana primaria especificados, e indicando si el tamaño de la ventana se ajusta automáticamente.

public:
 HwndSource(int classStyle, int style, int exStyle, int x, int y, int width, int height, System::String ^ name, IntPtr parent, bool adjustSizingForNonClientArea);
[System.Security.SecurityCritical]
public HwndSource (int classStyle, int style, int exStyle, int x, int y, int width, int height, string name, IntPtr parent, bool adjustSizingForNonClientArea);
public HwndSource (int classStyle, int style, int exStyle, int x, int y, int width, int height, string name, IntPtr parent, bool adjustSizingForNonClientArea);
[<System.Security.SecurityCritical>]
new System.Windows.Interop.HwndSource : int * int * int * int * int * int * int * string * nativeint * bool -> System.Windows.Interop.HwndSource
new System.Windows.Interop.HwndSource : int * int * int * int * int * int * int * string * nativeint * bool -> System.Windows.Interop.HwndSource
Public Sub New (classStyle As Integer, style As Integer, exStyle As Integer, x As Integer, y As Integer, width As Integer, height As Integer, name As String, parent As IntPtr, adjustSizingForNonClientArea As Boolean)

Parámetros

classStyle
Int32

Estilos de clase Win32 para la ventana.

style
Int32

Estilos Win32 para la ventana.

exStyle
Int32

Estilos extendidos de Win32 para la ventana.

x
Int32

Posición del borde izquierdo de la ventana.

y
Int32

Posición del borde superior de la ventana.

width
Int32

Ancho de la ventana.

height
Int32

Alto de la ventana.

name
String

Nombre de la ventana.

parent
IntPtr

nativeint

Identificador de la ventana primaria de la ventana.

adjustSizingForNonClientArea
Boolean

Es true para que el administrador de diseño incluya el área no cliente para el ajuste de tamaño; de lo contrario, es false.

Atributos

Comentarios

Importante

Este método no está disponible en la zona de seguridad de Internet.

Se aplica a