mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
16 lines
425 B
C#
16 lines
425 B
C#
using System.Windows.Controls;
|
|
using Flow.Launcher.Plugin.Calculator.ViewModels;
|
|
|
|
namespace Flow.Launcher.Plugin.Calculator.Views;
|
|
|
|
public partial class CalculatorSettings : UserControl
|
|
{
|
|
private readonly SettingsViewModel _viewModel;
|
|
|
|
public CalculatorSettings(Settings settings)
|
|
{
|
|
_viewModel = new SettingsViewModel(settings);
|
|
DataContext = _viewModel;
|
|
InitializeComponent();
|
|
}
|
|
}
|