概要
cscの作法、調べてみた。
練習問題やってみた。
練習問題
buttonに画像を使え。
写真
サンプルコード
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
namespace App
{
public partial class Form1: Form {
Button button1;
public Form1() {
Text = "button";
ClientSize = new Size(400, 400);
button1 = new Button();
button1.Location = new Point(50, 50);
button1.Size = new Size(250, 50);
button1.Click += new EventHandler(button1_Click);
button1.Image = Image.FromFile("cat8.png");
this.Controls.Add(button1);
}
private void button1_Click(object sender, EventArgs e) {
Console.WriteLine("ok0");
}
[STAThread]
public static void Main() {
Application.Run(new Form1());
}
}
}
以上