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