mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
25 lines
520 B
C#
25 lines
520 B
C#
|
|
using Avalonia.Controls;
|
||
|
|
using Avalonia.Markup.Xaml;
|
||
|
|
using Flow.Launcher.Plugin.ProcessKiller.ViewModels;
|
||
|
|
|
||
|
|
namespace Flow.Launcher.Plugin.ProcessKiller.Views.Avalonia;
|
||
|
|
|
||
|
|
public partial class SettingsControl : UserControl
|
||
|
|
{
|
||
|
|
public SettingsControl()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
|
||
|
|
public SettingsControl(SettingsViewModel viewModel)
|
||
|
|
{
|
||
|
|
DataContext = viewModel;
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
|
||
|
|
private void InitializeComponent()
|
||
|
|
{
|
||
|
|
AvaloniaXamlLoader.Load(this);
|
||
|
|
}
|
||
|
|
}
|