From ea94da3c1bea189f644c9e42281cecdc7f3ef5bb Mon Sep 17 00:00:00 2001 From: "Andy De George (adegeo)" Date: Fri, 21 Jan 2022 11:38:15 -0800 Subject: [PATCH] minor updates to get new build --- .../wpf/advanced/xaml-syntax-in-detail.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/dotnet-desktop-guide/framework/wpf/advanced/xaml-syntax-in-detail.md b/dotnet-desktop-guide/framework/wpf/advanced/xaml-syntax-in-detail.md index 820c3b5f46..3d30cea348 100644 --- a/dotnet-desktop-guide/framework/wpf/advanced/xaml-syntax-in-detail.md +++ b/dotnet-desktop-guide/framework/wpf/advanced/xaml-syntax-in-detail.md @@ -33,6 +33,7 @@ helpviewer_keywords: ms.assetid: 67cce290-ca26-4c41-a797-b68aabc45479 --- # XAML Syntax In Detail + This topic defines the terms that are used to describe the elements of XAML syntax. These terms are used frequently throughout the remainder of this documentation, both for WPF documentation specifically and for the other frameworks that use XAML or the basic XAML concepts enabled by the XAML language support at the System.Xaml level. This topic expands on the basic terminology introduced in the topic [XAML in WPF](xaml-in-wpf.md). @@ -46,9 +47,9 @@ This topic defines the terms that are used to describe the elements of XAML synt XAML is a markup language. The common language runtime (CLR), as implied by its name, enables runtime execution. XAML is not by itself one of the common languages that is directly consumed by the CLR runtime. Instead, you can think of XAML as supporting its own type system. The particular XAML parsing system that is used by WPF is built on the CLR and the CLR type system. XAML types are mapped to CLR types to instantiate a run time representation when the XAML for WPF is parsed. For this reason, the remainder of discussion of syntax in this document will include references to the CLR type system, even though the equivalent syntax discussions in the XAML language specification do not. (Per the XAML language specification level, XAML types could be mapped to any other type system, which does not have to be the CLR, but that would require the creation and use of a different XAML parser.) #### Members of Types and Class Inheritance - Properties and events as they appear as XAML members of a [!INCLUDE[TLA2#tla_winclient](../../../includes/tla2sharptla-winclient-md.md)] type are often inherited from base types. For example, consider this example: `` @@ -275,7 +276,7 @@ This topic defines the terms that are used to describe the elements of XAML synt ||| |-|-| |``|End of object element for the root. Object is not closed yet because the element contains child elements|