OnInitialized Method
See Also 
SourceCode.Workflow.WizardFramework.Controls Namespace > ModalDialog Class : OnInitialized Method



e
The System.Windows.RoutedEventArgs that contains the event data.

Glossary Item Box

Raises the System.Windows.FrameworkElement.Initialized event. This method is invoked whenever System.Windows.FrameworkElement.IsInitialized is set to true internally.

Syntax

Visual Basic (Declaration) 
Protected Overrides Sub OnInitialized( _
   ByVal e As EventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As ModalDialog
Dim e As EventArgs
 
instance.OnInitialized(e)
C# 
protected override void OnInitialized( 
   EventArgs e
)
C++/CLI 
protected:
void OnInitialized( 
   EventArgs^ e
) override 

Parameters

e
The System.Windows.RoutedEventArgs that contains the event data.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also