Files
CustomerPanel-Test/UserControls/CustomLinks.xaml.cs
2026-03-05 09:56:57 +01:00

28 lines
582 B
C#

using System.Windows;
using System.Windows.Controls;
namespace C4IT_CustomerPanel.UserControls
{
/// <summary>
/// Interaction logic for CustomLinks.xaml
/// </summary>
public partial class CustomLinks : UserControl
{
public CustomLinks()
{
InitializeComponent();
}
public void AddLink(UIElement element)
{
CustomLinkPanel.Children.Add(element);
}
public void ClearLinks()
{
CustomLinkPanel.Children.Clear();
}
}
}