|
分類:[C#]
よろしくお願いします。
ピクチャーボックスに多角形の図形を描きたいのですが以下のプログラムを 実行すると次のエラーメッセージが出ます。
「名前’PictureBox1'は現在のコンテキスト内に存在しません。」
ちなみに、Form1にpictureBoxを配置してあります。
using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Drawing.Drawing2D; using System.Collections;
namespace Test { public partial class Form1 : Form { public Form1() { InitializeComponent(); }
private void Form1_Load(object sender, EventArgs e) { }
private void pictureBox1_Click(object sender, EventArgs e) { Graphics g = PictureBox1.CreateGraphics();
Point[] points = {new Point(90, 10), new Point(20, 180), new Point(190, 50), new Point(10, 70) , new Point(160, 120)};
g.FillPolygon(Brushes.Black, points, FillMode.Alternate); } } }
|