mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
21 lines
503 B
C#
21 lines
503 B
C#
|
|
using Avalonia.Controls;
|
||
|
|
using Avalonia.Markup.Xaml;
|
||
|
|
using Flow.Launcher.Avalonia.ViewModel.SettingPages;
|
||
|
|
|
||
|
|
namespace Flow.Launcher.Avalonia.Views.SettingPages
|
||
|
|
{
|
||
|
|
public partial class PluginStoreSettingsPage : UserControl
|
||
|
|
{
|
||
|
|
public PluginStoreSettingsPage()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
DataContext = new PluginStoreSettingsViewModel();
|
||
|
|
}
|
||
|
|
|
||
|
|
private void InitializeComponent()
|
||
|
|
{
|
||
|
|
AvaloniaXamlLoader.Load(this);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|