Merge pull request #1307 from dotnet/publish-14592

This commit is contained in:
Bill Wagner
2022-02-10 05:18:28 -05:00
committed by GitHub
3 changed files with 3 additions and 3 deletions
@@ -12,7 +12,7 @@ ms.assetid: 75928354-dc01-47e8-a018-8409aec1f32d
---
# Attached Properties Overview
An attached property is a concept defined by XAML. An attached property is intended to be used as a type of global property that is settable on any object. In [!INCLUDE[TLA#tla_winclient](../../../includes/tlasharptla-winclient-md.md)], attached properties are typically defined as a specialized form of dependency property that does not have the conventional property "wrapper".
An attached property is a concept defined by XAML. An attached property is intended to be used as a type of global property that is settable on any dependency object. In [!INCLUDE[TLA#tla_winclient](../../../includes/tlasharptla-winclient-md.md)], attached properties are typically defined as a specialized form of dependency property that does not have the conventional property "wrapper".
## Prerequisites <a name="prerequisites"></a>
@@ -77,7 +77,7 @@ XAML as implemented in common language runtime (CLR) frameworks supports the abi
- Implements <xref:System.Collections.IList>.
- Implements <xref:System.Collections.IDictionary> or the generic equivalent (<xref:System.Collections.Generic.IDictionary%602>).
- Implements <xref:System.Collections.IDictionary>.
- Derives from <xref:System.Array> (for more information about arrays in XAML, see [x:Array Markup Extension](/dotnet/desktop/xaml-services/xarray-markup-extension).)
@@ -13,7 +13,7 @@ helpviewer_keywords:
# Attached properties overview (WPF .NET)
An attached property is a Extensible Application Markup Language (XAML) concept. Attached properties enable extra property/value pairs to be set on any XAML element, even though the element doesn't define those extra properties in its object model. The extra properties are globally accessible. Attached properties are typically defined as a specialized form of dependency property that doesn't have a conventional property wrapper.
An attached property is a Extensible Application Markup Language (XAML) concept. Attached properties enable extra property/value pairs to be set on any XAML element that derives from <xref:System.Windows.DependencyObject>, even though the element doesn't define those extra properties in its object model. The extra properties are globally accessible. Attached properties are typically defined as a specialized form of dependency property that doesn't have a conventional property wrapper.
[!INCLUDE [desktop guide under construction](../../includes/desktop-guide-preview-note.md)]