23 lines
563 B
C#
23 lines
563 B
C#
|
|
using System.Windows;
|
|||
|
|
using System.Windows.Controls;
|
|||
|
|
using System.Windows.Data;
|
|||
|
|
using System.Windows.Media;
|
|||
|
|
using DTS.Common.Interface.TestSetups.Diagnostics;
|
|||
|
|
|
|||
|
|
// ReSharper disable CheckNamespace
|
|||
|
|
|
|||
|
|
namespace Diagnostics
|
|||
|
|
{
|
|||
|
|
/// <inheritdoc cref="IDiagnosticsTreeView" />
|
|||
|
|
/// <summary>
|
|||
|
|
/// Interaction logic for DiagnosticsTreeView.xaml
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class DiagnosticsTreeView : IDiagnosticsTreeView
|
|||
|
|
{
|
|||
|
|
public DiagnosticsTreeView()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|