You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/Adorners/src/AdornerLayer.cs
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,18 @@
7
7
namespaceCommunityToolkit.WinUI;
8
8
9
9
/// <summary>
10
-
/// An adornment layer which can hold content to show on top of other components. If none is specified, one will be injected into your app content for you.
10
+
/// An adornment layer which can hold content to show on top of other components.
11
+
/// If none is specified, one will be injected into your app content for you.
12
+
/// If a suitable location can't be automatically found, you can also use an
13
+
/// <see cref="AdornerDecorator"/> to specify where the <see cref="AdornerLayer"/> should be placed.
11
14
/// </summary>
12
15
publicpartialclassAdornerLayer:Canvas
13
16
{
17
+
/// <summary>
18
+
/// Gets the <see cref="XamlProperty"/> of a <see cref="FrameworkElement"/>. Use this to retrieve any attached <see cref="UIElement"/> adorner from another <see cref="FrameworkElement"/>.
19
+
/// </summary>
20
+
/// <param name="obj">The <see cref="FrameworkElement"/> to retrieve the adorner from.</param>
21
+
/// <returns>The <see cref="UIElement"/> attached as an adorner.</returns>
0 commit comments