Flow.Launcher/Plugins/Flow.Launcher.Plugin.Shell/Views/ShellSetting.xaml.cs
2025-10-14 13:49:29 +03:00

15 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();
}
}
}