mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-05-09 16:16:13 -04:00
Make fields readonly Remove unnecessary casts Format document Remove unnecessary usings Sort usings Use file-level namespaces Order modifiers
19 lines
349 B
C#
19 lines
349 B
C#
using Avalonia.Controls;
|
|
using LibationAvalonia.ViewModels.Settings;
|
|
using LibationFileManager;
|
|
|
|
namespace LibationAvalonia.Controls.Settings;
|
|
|
|
public partial class Import : UserControl
|
|
{
|
|
public Import()
|
|
{
|
|
InitializeComponent();
|
|
|
|
if (Design.IsDesignMode)
|
|
{
|
|
DataContext = new ImportSettingsVM(Configuration.CreateMockInstance());
|
|
}
|
|
}
|
|
}
|