VisualTreeChangeEventArgs Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the VisualTreeChangeEventArgs class.
public:
VisualTreeChangeEventArgs(System::Windows::DependencyObject ^ parent, System::Windows::DependencyObject ^ child, int childIndex, System::Windows::Diagnostics::VisualTreeChangeType changeType);
public VisualTreeChangeEventArgs (System.Windows.DependencyObject parent, System.Windows.DependencyObject child, int childIndex, System.Windows.Diagnostics.VisualTreeChangeType changeType);
new System.Windows.Diagnostics.VisualTreeChangeEventArgs : System.Windows.DependencyObject * System.Windows.DependencyObject * int * System.Windows.Diagnostics.VisualTreeChangeType -> System.Windows.Diagnostics.VisualTreeChangeEventArgs
Public Sub New (parent As DependencyObject, child As DependencyObject, childIndex As Integer, changeType As VisualTreeChangeType)
Parameters
- parent
- DependencyObject
The DependencyObject to which an element (Child) was either added or removed.
- child
- DependencyObject
The DependencyObject that was added to or removed from another element (Parent).
- childIndex
- Int32
The index in the Parent element's children where the Child element is located when the add or remove operation is complete.
- changeType
- VisualTreeChangeType
A value that indicates whether the Child element was added to another element (Parent) or removed.
Remarks
This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.