Delete Plugins/Flow.Launcher.Plugin.Calculator/Views/CalculatorSettings.xaml.cs

This commit is contained in:
dcog989 2025-07-23 17:26:18 +01:00 committed by GitHub
parent 1fed54b615
commit 4d22e6c352
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,19 +0,0 @@
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;
private readonly Settings _settings;
public CalculatorSettings(SettingsViewModel viewModel)
{
_viewModel = viewModel;
_settings = viewModel.Settings;
DataContext = viewModel;
InitializeComponent();
}
}
}