2025-07-27 06:43:31 +00:00
|
|
|
|
using System.Windows.Controls;
|
2025-07-24 01:33:59 +00:00
|
|
|
|
using Flow.Launcher.Plugin.Calculator.ViewModels;
|
|
|
|
|
|
|
2025-09-15 05:02:42 +00:00
|
|
|
|
namespace Flow.Launcher.Plugin.Calculator.Views;
|
|
|
|
|
|
|
|
|
|
|
|
public partial class CalculatorSettings : UserControl
|
2025-07-24 01:33:59 +00:00
|
|
|
|
{
|
2025-09-15 05:02:42 +00:00
|
|
|
|
private readonly SettingsViewModel _viewModel;
|
2025-07-24 01:33:59 +00:00
|
|
|
|
|
2025-09-15 05:02:42 +00:00
|
|
|
|
public CalculatorSettings(Settings settings)
|
|
|
|
|
|
{
|
|
|
|
|
|
_viewModel = new SettingsViewModel(settings);
|
|
|
|
|
|
DataContext = _viewModel;
|
|
|
|
|
|
InitializeComponent();
|
2025-07-24 01:33:59 +00:00
|
|
|
|
}
|
2020-03-31 11:00:09 +00:00
|
|
|
|
}
|