UI library build with Eto Forms for editing Honeybee Schema (DotNet) on both Windows and Mac system.


Keywords
License
AGPL-3.0-only
Install
Install-Package Honeybee.UI -Version 1.49.45

Documentation

Build NuGet Version and Downloads count

honeybee-ui-dotnet

This is the UI library with ETO dialogs and forms for editing Honeybee Schema (DotNet) on both Windows and Mac system.

2020-06-22-17-47-41

Installation

Run the following command or via Visual Studio Nuget Package Manager to install the library

  • [dotnet] dotnet add package Honeybee.UI

Then include the DLL (under the bin folder) in the C# project, and use the namespaces:

using HoneybeeSchema;
using Honeybee.UI;

Getting Started

var energyProp = new HoneybeeSchema.RoomEnergyPropertiesAbridged();
var dialog = new Honeybee.UI.Dialog_RoomEnergyProperty(energyProp);
var dialog_rc = dialog.ShowModal();
if (dialog_rc != null)
{
    Console.WriteLine(dialog_rc.ToJson());
}