概要
cscの作法、調べてみた。
練習問題やってみた。
練習問題
カレンダーを表示せよ。
写真
サンプルコード
using System;
using System.CodeDom;
using System.CodeDom.Compiler;
using System.Reflection;
using System.Windows.Forms;
using System.Drawing;
class form1: Form {
form1() {
Text = "MonthCalendar";
ClientSize = new Size(300, 200);
MonthCalendar cal = new MonthCalendar();
//cal.ClientSize = new Size(300, 200);
Controls.AddRange(new Control[] {
cal
});
}
[STAThread]
public static void Main() {
Application.Run(new form1());
}
}
以上。
