Class InitializableContentControl
System.Windows.Controls.ContentControl that supports a simple, transacted notification for batch initialization.
Inheritance
Namespace: Telerik.Windows.Controls.TimeBar
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public abstract class InitializableContentControl : ContentControl, ISupportInitialize
Constructors
InitializableContentControl()
Declaration
protected InitializableContentControl()
Properties
IsInitialized
Gets a value that indicates whether this element has been initialized, either during processing by a XAML processor, or by explicitly having its EndInit() method called.
Declaration
public bool IsInitialized { get; }
Property Value
System.Boolean
If this instance is initialized |
Methods
BeginInit()
Starts the initialization process for this element.
Declaration
public virtual void BeginInit()
EndInit()
Indicates that the initialization process for the element is complete.
Declaration
public virtual void EndInit()
Exceptions
System.InvalidOperationException
System.Windows.FrameworkElement.EndInit was called without System.Windows.FrameworkElement.BeginInit having previously been called on the element. |