22 lines
449 B
C#
22 lines
449 B
C#
|
|
using System.Windows.Controls;
|
|||
|
|
using Xceed.Wpf.Toolkit;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.BusyIndicatorManager
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Interaction logic for xBusyIndicator.xaml
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class xBusyIndicator
|
|||
|
|
{
|
|||
|
|
public xBusyIndicator()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void Connect(int connectionId, object target)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|