mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
12 lines
274 B
C#
12 lines
274 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
|
|
namespace Aaru.Gui.Panels
|
|
{
|
|
public class DeviceInfoPanel : UserControl
|
|
{
|
|
public DeviceInfoPanel() => InitializeComponent();
|
|
|
|
void InitializeComponent() => AvaloniaXamlLoader.Load(this);
|
|
}
|
|
} |