FrameworkElement.IsInitialized Property

Gets a value that indicates whether this element has been initialized, either during processing by a XAML reader, or by explicitly having its EndInit method called.

Namespace: System.Windows
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace:  http://schemas.microsoft.com/winfx/2006/xaml/presentation

'Declaration
Public ReadOnly Property IsInitialized As Boolean
'Usage
Dim instance As FrameworkElement
Dim value As Boolean

value = instance.IsInitialized

/** @property */
public boolean get_IsInitialized ()

public function get IsInitialized () : boolean

You cannot use this property in XAML.

Property Value

true if the element is initialized per the aforementioned XAML reader processing or method calls; otherwise, false.

This property may also be true if this element has been moved within the logical tree such that it has a new parent element, and therefore becomes reloaded again.

This property is useful if you also are using BeginInit and EndInit. Elements in the logical tree that is loaded by a XAML reader are assured to be initialized. Elements not in the logical tree are initialized when EndInit is called. In absense of any specific handling of BeginInit and EndInit, this will happen as soon as the constructor returns the initialized result.

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0

Community Additions

ADD
Show: