Northwoods.GoWinForms 10.0.0-beta4

.NET 6.0 .NET Framework 4.6.2
Suggested Alternatives

Northwoods.GoDiagram.WinForms

Additional Details

Please switch over to the Northwoods.GoDiagram.WinForms package, as that is where future updates will take place.

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

// Install Northwoods.GoWinForms as a Cake Tool
#tool nuget:?package=Northwoods.GoWinForms&version=10.0.0-beta4&prerelease

GoDiagram — .NET Library for Interactive Diagrams

GoDiagram is currently in beta

GoDiagram is a .NET library for creating interactive diagrams, charts, and graphs. It is based on the GoJS JavaScript diagramming library, also from Northwoods Software.

open issues Twitter Follow

Get Started with GoDiagram

GoDiagram is a flexible library that can be used to create a number of different kinds of interactive diagrams, including data visualizations, drawing tools, and graph editors. GoDiagram includes a number of built in layouts including tree layout, force directed, radial, and layered digraph layout, and a number of custom layout examples.

Read more about GoDiagram at godiagram.com.

This repository contains the sources for all samples and extensions. You can use the GitHub repository to quickly search through the sample sources.

In your project, we recommend referencing the library via NuGet as it will more reliably add toolbox items and necessary references.

Minimal Sample

Graphs are constructed by creating one or more templates, with desired properties data-bound, and adding model data.

  ...

  private void Setup() {
    _Diagram = diagramControl1.Diagram;

    _Diagram.UndoManager.IsEnabled = true;  // enable undo & redo

    // define a simple Node template
    _Diagram.NodeTemplate =
      new Node("Auto")  // the Shape will go around the TextBlock
        .Add(
          new Shape("RoundedRectangle") {
              StrokeWidth = 0,  // no border
              Fill = "white"  // default fill is white
            }
            // Shape.Fill is bound to Node.Data.Color
            .Bind("Fill", "Color"),
          new TextBlock {
              Margin = 8, // some room around the text
              Font = new Font("Segoe UI", 14, FontWeight.Bold),
              Stroke = "#333"
            }
            // TextBlock.Text is bound to Node.Data.Key
            .Bind("Text", "Key")
        );

    // but use the default Link template, by not setting Diagram.LinkTemplate

    // create the model data that will be represented by Nodes and Links
    _Diagram.Model = new Model {
      NodeDataSource = new List<NodeData> {
        new NodeData { Key = "Alpha", Color = "lightblue" },
        new NodeData { Key = "Beta", Color = "orange" },
        new NodeData { Key = "Gamma", Color = "lightgreen" },
        new NodeData { Key = "Delta", Color = "pink" }
      },
      LinkDataSource = new List<LinkData> {
        new LinkData { From = "Alpha", To = "Beta" },
        new LinkData { From = "Alpha", To = "Gamma" },
        new LinkData { From = "Beta", To = "Beta" },
        new LinkData { From = "Gamma", To = "Delta" },
        new LinkData { From = "Delta", To = "Alpha" }
      }
    };
  }

  // define the model data
  public class Model : GraphLinksModel<NodeData, string, object, LinkData, string, string> { }
  public class NodeData : Model.NodeData {
    public string Color { get; set; }
  }
  public class LinkData : Model.LinkData { }

  ...

The above diagram and model code creates the following graph.

diagram

License

The GoDiagram software license.

Copyright (c) 2022 Northwoods Software Corporation

Product Versions
.NET net6.0-windows net6.0-windows7.0 net7.0-windows net7.0-windows7.0
.NET Framework net462 net463 net47 net471 net472 net48 net481
Compatible target framework(s)
Additional computed target framework(s)
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
10.0.0-beta4 162 7/5/2022
10.0.0-beta3 294 4/18/2022
10.0.0-beta2 118 4/11/2022
10.0.0-beta1 116 4/7/2022
10.0.0-alpha9 116 3/22/2022
10.0.0-alpha8 121 2/11/2022
10.0.0-alpha7 118 2/7/2022
10.0.0-alpha6 133 1/6/2022
10.0.0-alpha5 119 1/6/2022
10.0.0-alpha4 133 12/30/2021
10.0.0-alpha3 139 12/22/2021
10.0.0-alpha2 148 12/16/2021
10.0.0-alpha1 158 12/14/2021