18 lines
486 B
C#
18 lines
486 B
C#
using System.Windows.Controls;
|
|
|
|
namespace HC_APTBS.Views.UserControls
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for TestPanelView.xaml.
|
|
/// All logic resides in <see cref="ViewModels.TestPanelViewModel"/>.
|
|
/// </summary>
|
|
public partial class TestPanelView : UserControl
|
|
{
|
|
/// <summary>Initialises a new instance of the <see cref="TestPanelView"/> class.</summary>
|
|
public TestPanelView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|