Files
BeWoPlaner/Shared/Extensions/GridExtensions.cs
Lyndon Jetten 38d7564496 Mobilklient:
Bewertung hinzugefügt
2021-06-16 15:11:39 +02:00

24 lines
536 B
C#

using System.Windows;
using System.Windows.Controls;
namespace BS.Shared.Extensions
{
public static class GridExtensions
{
public static void AddChild(this Grid grid, UIElement uiElement)
{
grid?.Children.Add(uiElement);
}
public static void RemoveChild(this Grid grid, UIElement uiElement)
{
grid?.Children.Remove(uiElement);
}
public static void ClearChildren(this Grid grid)
{
grid?.Children.Clear();
}
}
}