eto - Eto.Serialization.Json 2.7.0

Eto.Json allows you to load json UI definitions for the Eto.Forms framework

To get more information about how to get started, read the wiki:

https://github.com/picoe/Eto/wiki

PM> Install-Package Eto.Serialization.Json -Version 2.7.0 -Source https://www.myget.org/F/eto/api/v3/index.json

Copy to clipboard

> nuget.exe install Eto.Serialization.Json -Version 2.7.0 -Source https://www.myget.org/F/eto/api/v3/index.json

Copy to clipboard

> dotnet add package Eto.Serialization.Json --version 2.7.0 --source https://www.myget.org/F/eto/api/v3/index.json

Copy to clipboard
<PackageReference Include="Eto.Serialization.Json" Version="2.7.0" />
Copy to clipboard
source https://www.myget.org/F/eto/api/v3/index.json

nuget Eto.Serialization.Json  ~> 2.7.0
Copy to clipboard

> choco install Eto.Serialization.Json --version 2.7.0 --source https://www.myget.org/F/eto/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "eto" -SourceLocation "https://www.myget.org/F/eto/api/v2"
Install-Module -Name "Eto.Serialization.Json" -RequiredVersion "2.7.0" -Repository "eto" 
Copy to clipboard

Eto.Forms

A cross platform desktop and mobile user interface framework

Build discussions Gitter wiki NuGet MyGet

Description

This framework can be used to build applications that run across multiple platforms using their native toolkit, with an easy to use API. This will make your applications look and work as a native application on all platforms, using a single UI codebase.

For advanced scenarios, you can take advantage of each platform's capabilities by wrapping your common UI in a larger application, or even create your own high-level controls with a custom implementations per platform.

This framework currently supports creating Desktop applications that work across Windows Forms, WPF, MonoMac, and GTK#. There is a Mobile/iOS port in the works, but is considered incomplete.

This framework was built so that using it in .NET is natural. For example, a simple hello-world application might look like:

using Eto.Forms;
using Eto.Drawing;

public class MyForm : Form
{
	public MyForm ()
	{
		Title = "My Cross-Platform App";
		ClientSize = new Size(200, 200);
		Content = new Label { Text = "Hello World!" };
	}
	
	[STAThread]
	static void Main()
	{
		new Application().Run(new MyForm());
	}
}

or in a F# script:

#load ".paket/load/eto.platform.windows.fsx"
// see https://fsprojects.github.io/Paket/paket-generate-load-scripts.html

open Eto.Drawing
open Eto.Forms

type MyForm() as this =
    inherit Form()
    do
        this.Title      <- "My Cross-Platform App"
        this.ClientSize <- Size (200, 200)
        this.Content    <- new Label(Text = "Hello F# World!")

Eto.Platform.Initialize(Eto.Platforms.WinForms)
let app = new Application()
let form = new MyForm()
form.Show()

Getting Started

To begin creating apps using Eto.Forms, follow the Quick Start Guide.

To compile or contribute to Eto.Forms, read the Contributing Guide.

Screenshots

Windows via WPF:

Mac via MonoMac:

Linux via GTK#3:

Applications

Third party libraries

Pure Eto.Forms SkiaSharp edition
ScottPlot pure Plotting library that makes it easy to interactively display large datasets. samplesample
LiveCharts skia Simple, flexible, powerful and open source data visualization for .Net. samplesamplesample
Microcharts skia Create elegant Cross-Platform simple charts. sample
OxyPlot pure skia Cross-platform plotting library for .NET. samplesamplesample
Mapsui skia A C# map component for apps. samplesamplesample
LibVLCSharp pure Display a video in an Eto app. samplesample
Eto.OpenTK pure OpenGL viewport control for Eto.Forms using OpenTK.
Eto.Veldrid pure A control to embed the Veldrid graphics library in Eto.Forms.
Eto.CodeEditor pure A package that gives you a code editor control in Eto.Forms.
Eto.HtmlRenderer pure Provides an Eto control to display HTML content.
Eto.RainbowLoading pure skia A control showing the Android loading indicator. sample
Eto.GifImageView pure A control for displaying GIF's. sample
Eto.SkiaDraw pure A control enabling use of SkiaSharp in Eto.
Eto.Containers pure Some extra Eto.Forms container controls.

👉 Note : Some packages are in the pipeline but will not appear until next release is created.

Assemblies

Your project only needs to reference Eto.dll, and include the corresponding platform assembly that you wish to target. To run on a Mac platform, you need to bundle your app.

  • Eto.dll - Eto.Forms (UI), Eto.Drawing (Graphics), and platform loading
  • Eto.Mac64.dll - Lightweight Mac platform using .NET 6+ or mono
  • Eto.macOS.dll - .NET 6+ platform for Mac (for use with the net6.0-macos target)
  • Eto.WinForms.dll - Windows Forms platform using GDI+ for graphics
  • Eto.Direct2D.dll - Windows Forms platform using Direct2D for graphics
  • Eto.Wpf.dll - Windows Presentation Foundation platform
  • Eto.Gtk.dll - Gtk+3 platform for Mac, Windows, and Linux.
  • Eto.iOS.dll - Xamarin.iOS platform
  • Eto.Android.dll - Xamarin.Android platform

Currently supported targets

  • OS X: MonoMac or net6.0-macos
  • Linux: GTK+ 3
  • Windows: Windows Forms (using GDI or Direct2D) or WPF

Under development

These platforms are currently incomplete or in development. Any eager bodies willing to help feel free to do so!

  • iOS using Xamarin.iOS
  • Android using Xamarin.Android (Eto.Android)
  • .NETStandard 2.0
    • Eto.Forms (>= 2.7.0)
    • Newtonsoft.Json (>= 13.0.1)
  • .NETStandard 2.0: 2.0.0.0

Owners

Curtis Wensley

Authors

Eto.Serialization.Json

Project URL

https://github.com/picoe/Eto

License

BSD-2-Clause

Tags

cross platform gui ui framework desktop json eto.forms

Info

496 total downloads
22 downloads for version 2.7.0
Download (14.55 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
2.12.0-ci-20260415.24477716394 16.07 KB Wed, 15 Apr 2026 20:57:50 GMT 0
2.12.0-ci-20260415.24470331546 16.06 KB Wed, 15 Apr 2026 18:29:48 GMT 0
2.12.0-ci-20260415.24436344782 16.05 KB Wed, 15 Apr 2026 04:30:49 GMT 0
2.12.0-ci-20260413.24359831680 16.07 KB Mon, 13 Apr 2026 18:30:41 GMT 0
2.12.0-ci-20260326.23581270012 16.06 KB Thu, 26 Mar 2026 06:50:57 GMT 0
2.12.0-ci-20260326.23581001150 16.05 KB Thu, 26 Mar 2026 06:42:01 GMT 0
2.12.0-ci-20260326.23578315261 16.06 KB Thu, 26 Mar 2026 05:05:50 GMT 0
2.12.0-ci-20260323.23459420502 16.07 KB Mon, 23 Mar 2026 20:54:33 GMT 0
2.12.0-ci-20260323.23451043192 16.07 KB Mon, 23 Mar 2026 17:35:17 GMT 1
2.12.0-ci-20260319.23309272173 16.07 KB Thu, 19 Mar 2026 18:03:38 GMT 0
2.11.0 15.99 KB Mon, 02 Mar 2026 21:16:23 GMT 1
2.10.2 15.8 KB Fri, 26 Sep 2025 05:51:41 GMT 22
2.10.1 15.79 KB Thu, 18 Sep 2025 18:14:38 GMT 26
2.10.0 15.8 KB Tue, 16 Sep 2025 21:01:49 GMT 30
2.9.0 13.94 KB Sat, 28 Dec 2024 18:29:54 GMT 26
2.8.3 14.48 KB Mon, 11 Mar 2024 15:01:41 GMT 25
2.8.2 14.44 KB Fri, 17 Nov 2023 21:38:33 GMT 29
2.8.1 14.44 KB Tue, 31 Oct 2023 19:52:25 GMT 24
2.8.0 14.46 KB Sun, 10 Sep 2023 18:43:13 GMT 28
2.7.5 14.56 KB Fri, 21 Apr 2023 14:20:59 GMT 31
2.7.4 14.56 KB Tue, 28 Mar 2023 21:42:55 GMT 20
2.7.3 14.55 KB Thu, 19 Jan 2023 21:19:41 GMT 23
2.7.2 14.55 KB Tue, 25 Oct 2022 22:38:44 GMT 36
2.7.1 14.55 KB Sun, 07 Aug 2022 01:51:49 GMT 25
2.7.0 14.55 KB Sat, 07 May 2022 04:49:49 GMT 22
2.6.1 14.55 KB Tue, 11 Jan 2022 06:59:09 GMT 19
2.6.0 14.55 KB Fri, 26 Nov 2021 06:17:22 GMT 36
2.5.11 26.09 KB Thu, 13 May 2021 10:30:34 GMT 25
2.5.10 26.08 KB Wed, 13 Jan 2021 08:28:18 GMT 27
2.5.9 26.02 KB Tue, 05 Jan 2021 05:38:03 GMT 20