Simple Sand Samples |
説明のないとってもシンプルなサンプルプログラム集
PHP | Gawk | C言語 | D言語 | GO言語 | Excel2007 | COBOL |
Bash | Perl | Gauche | Clojure | CLISP | EmacsLisp | VimScript |
Tcl | Ruby | Groovy | Java | C# | Vim | |
Python | Erlang | Scala | OCaml | VBScript | JavaScript | |
Io言語 | Haskell | Windows | Linux |
C#(mono) > (Forms)Buttonを使う
swing-button.cs
using System.Windows.Forms; using System; using System.Drawing; class Test : Form { static void Main() { Application.Run(new Test()); } static Button b = new Button(); public Test() { this.Size = new Size(300,200); b.Parent = this; b.Location = new Point(10,10); b.Size = new Size(280,160); b.Text = "PUSH TO EXIT"; b.Click += new EventHandler(OnClick); } static void OnClick(object sender, EventArgs e) { Application.Exit(); } }
$ mcs swing-button.cs -r:System.Windows.Forms.dll
-r:System.Drawing.dll
$ mono swing-button.exe
-r:System.Drawing.dll
$ mono swing-button.exe
* 確認環境 Debian Linux(Wheezy)