FrameworkContentElement.IsInitialized Свойство
Определение
Возвращает значение, указывающее, был ли инициализирован данный элемент, либо путем загрузки в качестве Язык XAMLExtensible Application Markup Language (XAML), либо путем явного вызова своего метода EndInit().Gets a value indicating whether this element has been initialized, either by being loaded as Язык XAMLExtensible Application Markup Language (XAML), or by explicitly having its EndInit() method called.
public:
property bool IsInitialized { bool get(); };
public bool IsInitialized { get; }
member this.IsInitialized : bool
Public ReadOnly Property IsInitialized As Boolean
Значение свойства
true
, если элемент инициализирован путем вышеупомянутой загрузки или вызовов метода; в противном случае — false
.true
if the element is initialized per the aforementioned loading or method calls; otherwise, false
.
Комментарии
Это свойство также может быть true
, если этот элемент был перемещен в дереве элементов таким образом, что он имеет новый родительский элемент и поэтому снова перезагружен.This property may also be true
if this element has been moved within the element tree such that it has a new parent element, and therefore becomes reloaded again.