2014年6月28日土曜日

開発環境

Head First C#―頭とからだで覚えるC#の基本 (Andrew Stellman (著)、Jennifer Green (著)、佐藤 嘉一 (監修)、木下 哲也 (翻訳)、オライリージャパン)の10章(コントロールとグラフィックス: 見栄えをよくする)、自分で考えてみよう(p.446)を解いてみる。

自分で考えてみよう(p.446)

コード

Form1.cs

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 WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Shown(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, x, 0, x, this.Height);
                    g.DrawString(x.ToString(), f, Brushes.Black, x, 0);
                }
                for (int y = 0; y < this.Height; y += 20)
                {
                    g.DrawLine(Pens.Black, 0, y, this.Width, y);
                    g.DrawString(y.ToString(), f, Brushes.Black, new PointF(0, y));
                }
            }
        }
    }
}

0 コメント:

コメントを投稿