mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
16 lines
391 B
C#
16 lines
391 B
C#
|
|
using System.Windows.Controls;
|
|||
|
|
using Flow.Launcher.Plugin.Shell.ViewModels;
|
|||
|
|
|
|||
|
|
namespace Flow.Launcher.Plugin.Shell.Views
|
|||
|
|
{
|
|||
|
|
public partial class CMDSetting : UserControl
|
|||
|
|
{
|
|||
|
|
public CMDSetting(Settings settings)
|
|||
|
|
{
|
|||
|
|
var viewModel = new ShellSettingViewModel(settings);
|
|||
|
|
DataContext = viewModel;
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|