
| ファイル名 | 説明 |
|---|---|
| MyForm.zip | 空のプロジェクトの圧縮ファイル |
![]()



![]()
/*★ Form を継承した MyForm でウインドウを表示する 前田 稔 ★*/
using System;
using System.Drawing;
using System.Windows.Forms;
// 今は独自のものが無い!
public class MyForm : Form
{
public MyForm()
{
}
}
class form01
{
public static void Main()
{
MyForm mf = new MyForm();
Application.Run(mf);
MessageBox.Show("プログラムを終了します","Message Box");
}
}
|
using System;
using System.Drawing;
using System.Windows.Forms;
public class MyForm : Form {
public MyForm() {
}
}
class form01 {
public static void Main() {
MyForm mf = new MyForm();
Application.Run(mf);
MessageBox.Show("プログラムを終了します","Message Box");
}
}
|
public class MyForm : Form
{
public MyForm()
{
this.Text = "MyForm";
}
}
|
![]()
| ファイル(フォルダー) | 説明 |
|---|---|
| csform.csproj | プロジェクトファイル |
| csform.cs | フォームのソースファイル |
![]()