mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
14 lines
322 B
C#
14 lines
322 B
C#
|
|
using Avalonia.Controls;
|
||
|
|
using Flow.Launcher.Avalonia.ViewModel.SettingPages;
|
||
|
|
|
||
|
|
namespace Flow.Launcher.Avalonia.Views.SettingPages;
|
||
|
|
|
||
|
|
public partial class GeneralSettingsPage : UserControl
|
||
|
|
{
|
||
|
|
public GeneralSettingsPage()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
DataContext = new GeneralSettingsViewModel();
|
||
|
|
}
|
||
|
|
}
|