SettingsEditor 1.0.1

dotnet add package SettingsEditor --version 1.0.1
NuGet\Install-Package SettingsEditor -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SettingsEditor" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SettingsEditor --version 1.0.1
#r "nuget: SettingsEditor, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SettingsEditor as a Cake Addin
#addin nuget:?package=SettingsEditor&version=1.0.1

// Install SettingsEditor as a Cake Tool
#tool nuget:?package=SettingsEditor&version=1.0.1

SettingsEditor

1 Introduction

The SettingsEditor provides a centralized settings control that automatically renders all available settings controls (SettingsEditorItems) via reflections. That way the controls can easily be expanded without the need of a manual change to any settings menu.

2 API

2.1 SettingsEditor (UserControl)

Renders all UserControls that implement the SettingsEditorItem interface.

The SettingsEditorItems can be grouped by using the SettingsEditorItem.GetTabName.

The SettingsEditor offers methods for the common loading, validation and saving of settings.

Accessible Interface:

public SettingsEditor()

public void InstantiateAllElements()
public void LoadData(int? identification)
public bool ValidateData()
public void SaveData()

2.2 SettingsEditorItem (interface)

An item that will be rendered within the SettingsEditor.

Implement this interface within any UserControl to let the UserControl be rendered within any generated instance of the SettingsEditor.

Accessible Interface:

void LoadData(int? accountIdentifier)
bool ValidateData()
void SaveData()

string GetTabName()
string GetControlName()
bool IsVisible()
Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.7.2

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 159 6/25/2023