Build a GUI Application Using MonoDevelop on OS X

I just installed the latest version of Mono and MonoDevelop.

When I create a new solution under C #, there is no GUI based application.

How to create an application with a graphical interface and buttons, etc.

+3
source share
6 answers

If you are running Linux or Windows, the project type is called "Gtk Project # 2.0." If you are on a Mac, there is no visual constructor for Gtk #, you will have to manually code it.

+4
source

you can create a GUI using mono on Mac, follow these steps:

  • File- > New- > .
  • #, Gtk # "".
  • , MainWindow.cs.
  • ( ), , , .

, , , lables,... .., .

+6

WinForms # Visual Studio, , WinForms MonoDevelop.

: http://zetcode.com/tutorials/monowinformstutorial/firststeps/

# (File | New > Solution...) System.Drawing System.Windows.Forms(Project | Edit References...). Form . .

MonoDevelop . , (, MyButton.Click + = HandleMyButtonClick) , "+ =", . .

+3

Mono Cocoa, OS X Mono .

Cocoa #, - Mono, .

Cocoa #, . (IMHO) Monobj, Monodevelop/IB.

0

Xcode MonoFramework MonoDevelop, iOS!

MonoDevelop ( ) xcode. , , iPhone-, Monodevelop Xcode, MonoDevelop / .. Xcode - Mac OSX iOS...

:

MonoDevelop http://monodevelop.com/

MonoTouch ( CocaoTouch iOS) http://xamarin.com/monotouch

, , - (# Obj-C) http://www.mono-project.com/

0

MonoDevelop

0
source

Source: https://habr.com/ru/post/1739528/


All Articles