FrameworkTemplate.VisualTree Свойство
Определение
Получает или задает корневой узел шаблона.Gets or sets the root node of the template.
public:
property System::Windows::FrameworkElementFactory ^ VisualTree { System::Windows::FrameworkElementFactory ^ get(); void set(System::Windows::FrameworkElementFactory ^ value); };
public System.Windows.FrameworkElementFactory VisualTree { get; set; }
member this.VisualTree : System.Windows.FrameworkElementFactory with get, set
Public Property VisualTree As FrameworkElementFactory
Значение свойства
Корневой узел шаблона.The root node of the template.
Комментарии
Использование элемента свойства XAMLXAML Property Element Usage
<object>
<VisualTreeRootNode > VisualTreeNodeContents
</VisualTreeRootNode >
</object>
Значения XAMLXAML Values
висуалтрирутнодеVisualTreeRootNode
Один элемент XAML в качестве непосредственного дочернего FrameworkTemplate элемента подкласса.A single XAML element as the immediate child of the FrameworkTemplate subclass. Шаблоны должны иметь один корневой узел.Templates must have a single root node. Чтобы создать полезный шаблон, элемент, выбранный как висуалтрирутноде , должен поддерживать собственную модель содержимого, часто это модель, которая поддерживает несколько дочерних элементов.In order to generate a useful template, the element chosen as VisualTreeRootNode is expected to support a content model of its own, often a model that supports multiple child elements.
висуалтринодеконтентсVisualTreeNodeContents
Один или несколько элементов, которые завершают требуемый шаблон.One or more elements that complete the intended template. Если элемент, выбранный в качестве висуалтрирутноде , поддерживает только один дочерний объект, то может быть только один элемент, объявленный как висуалтринодеконтентс.If the element chosen as VisualTreeRootNode only supports a single child, then there can only be one element declared as VisualTreeNodeContents. Кроме того, можно (хотя и редко) предоставить текстовое содержимое, если выбранный висуалтрирутноде поддерживает свойство Text Content.It is also possible (though uncommon) to provide text content if the chosen VisualTreeRootNode supports a text content property.