forked from amkovkov/GranuSightSoftware2
15 lines
333 B
C#
15 lines
333 B
C#
using Avalonia.Controls;
|
|
|
|
namespace GSS2.Test.Views;
|
|
|
|
public partial class MainView : UserControl
|
|
{
|
|
private readonly ILogger<MainView> _logger;
|
|
|
|
public MainView(ILogger<MainView> logger)
|
|
{
|
|
_logger = logger;
|
|
InitializeComponent();
|
|
_logger.LogInformation("{} initialized", nameof(MainView));
|
|
}
|
|
} |