Files
HC_APTBS/Views/UserControls/TestPanelView.xaml.cs
2026-04-11 12:45:18 +02:00

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();
}
}
}