SourceChangedEventArgs Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Inicializa una nueva instancia de la clase SourceChangedEventArgs.
Sobrecargas
| Nombre | Description |
|---|---|
| SourceChangedEventArgs(PresentationSource, PresentationSource) |
Inicializa una nueva instancia de la SourceChangedEventArgs clase utilizando información proporcionada para los orígenes antiguos y nuevos. |
| SourceChangedEventArgs(PresentationSource, PresentationSource, IInputElement, IInputElement) |
Inicializa una nueva instancia de la SourceChangedEventArgs clase utilizando información proporcionada para los orígenes antiguos y nuevos, el elemento que este cambio afecta y el elemento primario notificado anterior de ese elemento. |
SourceChangedEventArgs(PresentationSource, PresentationSource)
Inicializa una nueva instancia de la SourceChangedEventArgs clase utilizando información proporcionada para los orígenes antiguos y nuevos.
public:
SourceChangedEventArgs(System::Windows::PresentationSource ^ oldSource, System::Windows::PresentationSource ^ newSource);
[System.Security.SecurityCritical]
public SourceChangedEventArgs(System.Windows.PresentationSource oldSource, System.Windows.PresentationSource newSource);
public SourceChangedEventArgs(System.Windows.PresentationSource oldSource, System.Windows.PresentationSource newSource);
[<System.Security.SecurityCritical>]
new System.Windows.SourceChangedEventArgs : System.Windows.PresentationSource * System.Windows.PresentationSource -> System.Windows.SourceChangedEventArgs
new System.Windows.SourceChangedEventArgs : System.Windows.PresentationSource * System.Windows.PresentationSource -> System.Windows.SourceChangedEventArgs
Public Sub New (oldSource As PresentationSource, newSource As PresentationSource)
Parámetros
- oldSource
- PresentationSource
El antiguo PresentationSource sobre el que se notifica a este controlador.
- newSource
- PresentationSource
Novedad PresentationSource sobre la que se notifica a este controlador.
- Atributos
Se aplica a
SourceChangedEventArgs(PresentationSource, PresentationSource, IInputElement, IInputElement)
Inicializa una nueva instancia de la SourceChangedEventArgs clase utilizando información proporcionada para los orígenes antiguos y nuevos, el elemento que este cambio afecta y el elemento primario notificado anterior de ese elemento.
public:
SourceChangedEventArgs(System::Windows::PresentationSource ^ oldSource, System::Windows::PresentationSource ^ newSource, System::Windows::IInputElement ^ element, System::Windows::IInputElement ^ oldParent);
[System.Security.SecurityCritical]
public SourceChangedEventArgs(System.Windows.PresentationSource oldSource, System.Windows.PresentationSource newSource, System.Windows.IInputElement element, System.Windows.IInputElement oldParent);
public SourceChangedEventArgs(System.Windows.PresentationSource oldSource, System.Windows.PresentationSource newSource, System.Windows.IInputElement element, System.Windows.IInputElement oldParent);
[<System.Security.SecurityCritical>]
new System.Windows.SourceChangedEventArgs : System.Windows.PresentationSource * System.Windows.PresentationSource * System.Windows.IInputElement * System.Windows.IInputElement -> System.Windows.SourceChangedEventArgs
new System.Windows.SourceChangedEventArgs : System.Windows.PresentationSource * System.Windows.PresentationSource * System.Windows.IInputElement * System.Windows.IInputElement -> System.Windows.SourceChangedEventArgs
Public Sub New (oldSource As PresentationSource, newSource As PresentationSource, element As IInputElement, oldParent As IInputElement)
Parámetros
- oldSource
- PresentationSource
El antiguo PresentationSource sobre el que se notifica a este controlador.
- newSource
- PresentationSource
Novedad PresentationSource sobre la que se notifica a este controlador.
- element
- IInputElement
Elemento cuyo elemento primario cambió, lo que provoca que el origen cambie.
- oldParent
- IInputElement
Elemento primario anterior del elemento cuyo elemento primario cambió, lo que hace que el origen cambie.
- Atributos