Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
E

Eto

> 编程语言
Open source

Cross platform GUI framework for desktop and mobile applications in .NET

4.0K stars0 likes0 views
WebsiteGitHub

About

Cross platform GUI framework for desktop and mobile applications in .NET

Eto.Forms

A cross platform desktop and mobile user interface framework

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

  • MonoGame Pipeline Tool - Content manager for MonoGame
  • Manager - Accounting Software
  • PabloDraw - Character based drawing application
  • Notedown - Note taking application
  • Eto.Test - Application to test the functionality of each widget
  • DWSIM - Chemical Process Simulator
  • Termission - Cross-platform Serial/TCP Terminal with Scriptable Auto-Response
  • Visual SEO Studio - Technical SEO Auditing Tool
  • RegexFileSearcher - Cross-platform regex file searching tool in .NET 5
  • RegexTestBench - Cross-platform regex testing tool in .NET 5
  • GEDKeeper (v3) - Cross-platform application for working with personal genealogical databases
  • Rhinoceros 3D - 3D computer graphics and computer-aided design (CAD) application

Third party libraries

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

GitHub Issues· 344 open

View all on GitHub
  • #1403

    Any plans on adding WASM as a target?

    help wantedUpdated Sep 8, 2026
  • #1936

    Please add support for Web Assembly and Tizen

    Updated Sep 2, 2026
  • #2981

    GTK: stopped Terminating event stops last window from closing

    Updated Jul 4, 2026
  • #2970

    GTK: native text controls swallow the first keystroke(s) on focus when a key event is handled

    Updated Jun 20, 2026
  • #2946

    GTK: Unable to cast object of type 'Cairo.SolidPattern' to type 'Cairo.SurfacePattern'.

    Updated May 16, 2026
  • #2942

    GTK: Memory leak in GtkTreeModel

    Updated May 14, 2026
  • #2907

    GTK: Mnemonics don't work on menu bar radio items

    Updated Feb 26, 2026
  • #2869

    feature request: visible rows for gridview/treegridview

    Updated Feb 8, 2026
  • #2881

    Control size documentations

    Updated Dec 24, 2025
  • #2376

    GTK4 support

    gtkenhancementUpdated Dec 20, 2025

Highlights

  • •MonoGame Pipeline Tool - Content manager for MonoGame
  • •Manager - Accounting Software
  • •PabloDraw - Character based drawing application
  • •Notedown - Note taking application
  • •Eto.Test - Application to test the functionality of each widget
  • •DWSIM - Chemical Process Simulator
  • •Termission - Cross-platform Serial/TCP Terminal with Scriptable Auto-Response
  • •Visual SEO Studio - Technical SEO Auditing Tool
  • •RegexFileSearcher - Cross-platform regex file searching tool in .NET 5
  • •RegexTestBench - Cross-platform regex testing tool in .NET 5

> Tags

C#

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言