21 lines
457 B
C#
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();
|
|
}
|
|
}
|
|
}
|