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
/// Attached <see cref="DependencyProperty"/> for setting the container content stretch direction on the <see cref="Windows.UI.Xaml.Controls.ListViewBase"/>
/// Gets the stretch <see cref="ItemContainerStretchDirection"/> associated with the specified <see cref="Windows.UI.Xaml.Controls.ListViewBase"/>
78
-
/// </summary>
79
-
/// <param name="obj">The <see cref="Windows.UI.Xaml.Controls.ListViewBase"/> to get the associated <see cref="ItemContainerStretchDirection"/> from</param>
80
-
/// <returns>The <see cref="ItemContainerStretchDirection"/> associated with the <see cref="Windows.UI.Xaml.Controls.ListViewBase"/></returns>
// Licensed to the .NET Foundation under one or more agreements.
2
+
// The .NET Foundation licenses this file to you under the MIT license.
3
+
// See the LICENSE file in the project root for more information.
4
+
5
+
usingSystem.Collections.Generic;
6
+
usingWindows.Foundation.Collections;
7
+
usingWindows.UI.Xaml;
8
+
usingWindows.UI.Xaml.Controls;
9
+
usingWindows.UI.Xaml.Controls.Primitives;
10
+
usingWindows.UI.Xaml.Media;
11
+
12
+
namespaceMicrosoft.Toolkit.Uwp.UI
13
+
{
14
+
/// <summary>
15
+
/// Provides attached dependency properties for the <see cref="Windows.UI.Xaml.Controls.ListViewBase"/>
16
+
/// </summary>
17
+
publicstaticpartialclassListViewExtensions
18
+
{
19
+
/// <summary>
20
+
/// Attached <see cref="DependencyProperty"/> for setting the container content stretch direction on the <see cref="Windows.UI.Xaml.Controls.ListViewBase"/>
/// Gets the stretch <see cref="ItemContainerStretchDirection"/> associated with the specified <see cref="Windows.UI.Xaml.Controls.ListViewBase"/>
26
+
/// </summary>
27
+
/// <param name="obj">The <see cref="Windows.UI.Xaml.Controls.ListViewBase"/> to get the associated <see cref="ItemContainerStretchDirection"/> from</param>
28
+
/// <returns>The <see cref="ItemContainerStretchDirection"/> associated with the <see cref="Windows.UI.Xaml.Controls.ListViewBase"/></returns>
0 commit comments