initial
This commit is contained in:
27
UserControls/CustomLinks.xaml.cs
Normal file
27
UserControls/CustomLinks.xaml.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user