This commit is contained in:
Meik
2026-03-05 09:56:57 +01:00
parent 838e6b1ee1
commit 4013fa8e32
827 changed files with 743038 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
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();
}
}
}