//
// SettingsView.axaml.cs
//
// Copyright (c) František Boháček. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using PropertyChanged;
namespace PacketLogger.Views.Settings;
/// <summary>
/// A view for configuration.
/// </summary>
[DoNotNotify]
public partial class SettingsView : UserControl
{
/// <summary>
/// Initializes a new instance of the <see cref="SettingsView"/> class.
/// </summary>
public SettingsView()
{
InitializeComponent();
}
private void InitializeComponent()
{
AvaloniaXamlLoader.Load(this);
}
}