forked from CommunityToolkit/WindowsCommunityToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGridExtensions.Private.cs
More file actions
41 lines (37 loc) · 1.4 KB
/
GridExtensions.Private.cs
File metadata and controls
41 lines (37 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
namespace Microsoft.Toolkit.Uwp.UI
{
/// <summary>
/// Private methods on GridExtensions to enable dynamic layout switching capability.
/// </summary>
public partial class GridExtensions
{
private static readonly DependencyProperty LoadedCallbackRegisteredProperty =
DependencyProperty.RegisterAttached("LoadedCallbackRegistered", typeof(bool), typeof(GridExtensions), new PropertyMetadata(false));
private static void UpdateLayout(Grid grid)
{
if (grid.IsLoaded)
{
if (GetLayouts(grid).TryGetValue(GetActiveLayout(grid), out var layout))
{
layout.Apply(grid);
}
}
else if (!(bool)grid.GetValue(LoadedCallbackRegisteredProperty))
{
grid.SetValue(LoadedCallbackRegisteredProperty, true);
grid.Loaded += OnGridLoaded;
}
}
private static void OnGridLoaded(object sender, RoutedEventArgs args)
{
var grid = (Grid)sender;
grid.Loaded -= OnGridLoaded;
UpdateLayout(grid);
}
}
}