2020年11月13日金曜日

mono でvb.net,csharpのGUIなどをやる

 http://simplesandsamples.com/ :: 実に詳しい

mcs below-program.cs -r:System.Windows.Forms -r:System.Drawing

using System;

using System.Windows.Forms;

using System.Drawing;

 

namespace MyFrmApp

{

    public class MyForm : Form

    {

        public MyForm()

        {

            Label label = new Label();

            label.Text = "Welcome to C#!";

            label.Font = new Font("Geneva",18,FontStyle.Regular);

            label.Height = 30;

            label.Width = 300;

            this.Controls.Add(label);

            this.Width = 300;

            this.Height = 200;

        }

    }

}


namespace MyFrmApp

{

    class Program

    {

        [STAThread]

        private static void Main(string[] args)

        {

            Application.Run(new MyForm());

        }

         

    }

}

以上は、libro tuyanoのソースコード monodevelop統合環境での開発記事だが

もうないので、最上のサイトを参考に、コマンドラインでコンパイルする


0 件のコメント:

コメントを投稿