18 lines
567 B
C#
18 lines
567 B
C#
using OwnChar.App.Desktop.Features.MainWindow.MainTabs;
|
|
using Pilz.Plugins.Advanced;
|
|
using Pilz.Plugins.Advanced.UI.Telerik;
|
|
|
|
namespace OwnChar.App.Desktop.Features.MainWindow.QuickAction
|
|
{
|
|
internal class SettingsFeature() : PluginModule(FeatureCodes.QuickAction, "ownchar.settings", "Settings"), IPluginFeatureProvider<TabMyUserFeature>
|
|
{
|
|
public static TabMyUserFeature Instance { get; } = new();
|
|
|
|
protected override PluginModuleUI CreateNewUI()
|
|
{
|
|
return null;
|
|
//return new TabSettings();
|
|
}
|
|
}
|
|
}
|