開発環境
- OS: Windows 10 Pro
- IDE(統合開発環境): Visual Studio Community 2017
Head First C# ―頭とからだで覚えるC#の基本 (Andrew Stellman (著)、Jennifer Greene (著)、佐藤 嘉一 (監修, 監修)、木下 哲也 (翻訳)、オライリージャパン)の10章(コントロールとグラフィックス - 見栄えをよくする)、自分で考えてみよう(p. 446)を取り組んでみる。
コード
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp25
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Click(object sender, EventArgs e)
{
using (Graphics g = this.CreateGraphics())
using (Font f = new Font("Arial", 6, FontStyle.Regular))
{
for (int x = 0; x < this.Width; x += 20)
{
g.DrawLine(Pens.Black,
new Point(x, 0),
new Point(x, this.Height));
g.DrawString(x.ToString(),
f, Brushes.Black,
new Point(x, 0));
}
for (int y = 0; y < this.Height; y += 20)
{
g.DrawLine(Pens.Black,
new Point(0, y),
new Point(this.Width, y));
g.DrawString(y.ToString(), f, Brushes.Black,
new Point(0, y));
}
}
}
}
}
0 コメント:
コメントを投稿