NanoByte.StructureEditor.WinForms 0.8.2

dotnet add package NanoByte.StructureEditor.WinForms --version 0.8.2
NuGet\Install-Package NanoByte.StructureEditor.WinForms -Version 0.8.2
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="NanoByte.StructureEditor.WinForms" Version="0.8.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NanoByte.StructureEditor.WinForms --version 0.8.2
#r "nuget: NanoByte.StructureEditor.WinForms, 0.8.2"
#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 NanoByte.StructureEditor.WinForms as a Cake Addin
#addin nuget:?package=NanoByte.StructureEditor.WinForms&version=0.8.2

// Install NanoByte.StructureEditor.WinForms as a Cake Tool
#tool nuget:?package=NanoByte.StructureEditor.WinForms&version=0.8.2

NanoByte Structure Editor

Build NuGet API documentation
NanoByte Structure Editor is a WinForms library that helps you build split-screen editors for your data structures, consisting of:

  1. a collapsible tree-view of the data structure,
  2. a graphical editor for the currently selected node in the tree (PropertyGrid or custom) and
  3. a text editor (based on ICSharpCode.TextEditor) with a serialized (XML) representation of the currently selected node.

This allows you to create an IDE-like experience for your users when editing complex domain specific languages, configuration files, etc..

Screenshot

Usage

Add a reference to the NanoByte.StructureEditor.WinForms NuGet package to your project. It is available for .NET Framework 2.0+ and .NET 6.0+.

Initialization

Create an instance of StructureEditor<T> and add it to your Form:

var editor = new StructureEditor<MyData>();
Controls.Add(editor);

Alternatively, you may want to derive your own class from StructureEditor<T>. This will allow you to use the graphical WinForms designer in Visual Studio (which does not support generic types) to place the Editor on your Form.

public class MyDataEditor : StructureEditor<MyData>
{}

You need to "describe" your data structure to the Editor. You can do this directly after instantiating the editor or in the constructor of your derived class.

  • Call DescribeRoot() and then use the fluent API provided as a return value to describe the properties on your main data type.
  • Call Describe<TContainer>() to describe the properties on a data type TContainer exposed by another property. You can use multiple calls with different type parameters to describe arbitrarily deep hierarchies.

The fluent API provides the following methods:

  • .AddProperty() describes a simple value property.
  • .AddPlainList() describes a non-polymorphic list.
  • .AddList() describes a polymorphic list. After calling it you need to chain .AddElement() calls for each specific type of element the list can hold.

There are numerous overloads for each of these methods, e.g., allowing you to specify a custom editor control for a data type or to keep the auto-generated one.

editor.DescribeRoot("Address Book")
      .AddPlainList("Group", x => x.Groups);
editor.Describe<IContactContainer>()
      .AddPlainList("Contact", x => x.Contacts);
editor.Describe<Contact>()
      .AddProperty("Home Address", x => PropertyPointer.For(() => x.HomeAddress))
      .AddProperty("Work Address", x => PropertyPointer.For(() => x.WorkAddress))
      .AddList(x => x.PhoneNumbers)
      .AddElement("Landline Number", new LandlineNumber())
      .AddElement("Mobile Number", new MobileNumber());

Storage

Use the Open() method to load an XML file into the editor:

editor.Open(CommandManager<AddressBook>.Load(path));

Use the Save() method on the CommandManager property to save the editor's content as an XML file:

editor.CommandManager.Save(path);

Take a look a the sample project for a more complete setup, including undo/redo functionality.

Building

The source code is in src/, config for building the API documentation is in doc/ and generated build artifacts are placed in artifacts/. The source code does not contain version numbers. Instead the version is determined during CI using GitVersion.

To build install Visual Studio 2022 or newer and run .\build.ps1.

Contributing

We welcome contributions to this project such as bug reports, recommendations and pull requests.

This repository contains an EditorConfig file. Please make sure to use an editor that supports it to ensure consistent code style, file encoding, etc.. For full tooling support for all style and naming conventions consider using JetBrains' ReSharper or Rider products.

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows was computed.  net8.0-windows7.0 is compatible. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
0.8.2 138 3/10/2024
0.8.1 155 2/29/2024
0.8.0 118 1/13/2024
0.7.7 178 9/30/2023
0.7.6 161 7/8/2023
0.7.5 142 6/26/2023
0.7.4 137 5/24/2023
0.7.3 197 4/9/2023
0.7.2 258 2/21/2023
0.7.1 318 1/30/2023
0.7.0 266 1/30/2023
0.6.1 262 1/30/2023
0.6.0 292 11/28/2022
0.5.10 381 10/16/2022
0.5.9 351 10/16/2022
0.5.8 382 9/20/2022
0.5.7 383 9/5/2022
0.5.6 428 7/20/2022
0.5.5 398 6/12/2022
0.5.4 419 5/18/2022
0.5.3 449 4/4/2022
0.5.2 460 2/24/2022
0.5.1 444 1/21/2022
0.5.0 307 12/6/2021
0.4.15 976 11/29/2021
0.4.14 311 10/18/2021
0.4.13 340 9/13/2021
0.4.12 362 8/28/2021
0.4.11 324 8/27/2021
0.4.10 342 5/5/2021
0.4.9 344 4/22/2021
0.4.8 333 4/19/2021
0.4.7 339 3/20/2021
0.4.6 339 3/9/2021
0.4.5 348 3/9/2021
0.4.4 331 3/9/2021
0.4.3 342 2/7/2021
0.4.2 369 1/24/2021
0.4.1 474 11/30/2020
0.4.0 446 11/21/2020
0.3.3 469 10/1/2020
0.3.2 455 7/19/2020
0.3.1 492 5/24/2020
0.3.0 538 1/8/2020
0.2.3 479 10/17/2019
0.2.2 482 7/25/2019
0.2.1 540 5/20/2019
0.2.0 546 4/2/2019
0.1.0 656 2/4/2019