Flow.Launcher/Flow.Launcher.Plugin/Interfaces/ISettingProvider.cs

17 lines
404 B
C#
Raw Permalink Normal View History

2015-10-30 23:17:34 +00:00
using System.Windows.Controls;
2020-04-21 09:12:17 +00:00
namespace Flow.Launcher.Plugin
{
2025-02-24 07:37:13 +00:00
/// <summary>
/// This interface is used to create settings panel for .Net plugins
/// </summary>
public interface ISettingProvider
{
2025-02-24 07:37:13 +00:00
/// <summary>
/// Create settings panel control for .Net plugins
/// </summary>
/// <returns></returns>
Control CreateSettingPanel();
}
}