Files
DP44/Common/DTS.CommonCore/Controls/RoundedBox.xaml.cs
2026-04-17 14:55:32 -04:00

21 lines
457 B
C#

using System.Windows.Controls;
namespace DTS.Common.Controls
{
/// <summary>
/// Interaction logic for RoundedBox.xaml
/// </summary>
public partial class RoundedBox : UserControl
{
public RoundedBox()
{
InitializeComponent();
}
public void Connect(int connectionId, object target)
{
//throw new System.NotImplementedException();
}
}
}