2018-12-25 07:11:24 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
|
|
2020-04-21 09:12:17 +00:00
|
|
|
|
namespace Flow.Launcher.Plugin.Url
|
2018-12-25 07:11:24 +00:00
|
|
|
|
{
|
|
|
|
|
|
public partial class SettingsControl : UserControl
|
|
|
|
|
|
{
|
|
|
|
|
|
private Settings _settings;
|
2020-04-21 12:54:41 +00:00
|
|
|
|
private IPublicAPI _flowlauncherAPI;
|
2018-12-25 07:11:24 +00:00
|
|
|
|
|
2020-04-21 12:54:41 +00:00
|
|
|
|
public SettingsControl(IPublicAPI flowlauncherAPI,Settings settings)
|
2018-12-25 07:11:24 +00:00
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
_settings = settings;
|
2020-04-21 12:54:41 +00:00
|
|
|
|
_flowlauncherAPI = flowlauncherAPI;
|
2021-12-05 22:03:34 +00:00
|
|
|
|
|
2018-12-25 07:11:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|