Coder Social home page Coder Social logo

luiseduardohdbackup / eto Goto Github PK

View Code? Open in Web Editor NEW

This project forked from carlokok/eto

0.0 2.0 0.0 31.91 MB

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

Home Page: http://picoe.ca

License: Other

Shell 0.38% C# 99.62%

eto's Introduction

Eto.Forms

A cross platform desktop and mobile user interface framework

Discussion

Description

This framework is built so that you can target multiple platforms with one UI codebase.

The overall goal of this framework is to expose a common API that can be used to build functional applications that run across platforms using their native toolkit. This will make your applications look and work as if it were a native application on all platforms.

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:

public class MyForm : Form
{
	public MyForm ()
	{
		Text = "My Cross-Platform App";
		Size = new Size (200, 200);
		var label = new Label { Text = "Hello World!" };
		this.AddDockedControl (label);
	}
	
	[STAThread]
	static void Main () {
		var app = new Application();
		app.Initialized += delegate {
			app.MainForm = new MyForm ();
			app.MainForm.Show ();
		};
		app.Run ();
	}
}

Download

Binaries are available in the Downloads section

Applications

Namespaces

  • Eto.Forms - User interface
  • Eto.Drawing - Drawing/graphical routines
  • Eto.IO - Disk/Virtual directory abstraction
  • Eto.Platform.[Platform] - platform implementations

Currently supported targets

  • OS X: MonoMac (Cocoa)
  • Linux: GTK#
  • Windows: Windows Forms or WPF

Under development

  • iOS using MonoTouch

Future plans

  • Android using Mono for Android (or equivalent)

eto's People

Contributors

carlokok avatar cwensley avatar danrigby avatar hultqvist avatar lubos avatar mojo2012 avatar sjb avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.