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