Flow.Launcher/Plugins/Flow.Launcher.Plugin.Shell/Views/ShellSetting.xaml.cs
2025-09-29 23:00:32 +08:00

16 lines
428 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();
DataContext = viewModel;
}
}
}