C#编程-132:DrawRectangle绘制矩形_彭世瑜_新浪博客_asp.net



  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace RectangleTest
  10. {
  11. public partial class Form1 : Form
  12. {
  13. public Form1()
  14. {
  15. InitializeComponent();
  16. }
  17. private void Form1_Paint(object sender, PaintEventArgs e)
  18. {
  19. Graphics g = e.Graphics;
  20. Pen pen = new Pen(Color.Orange,3);
  21. g.DrawRectangle(pen,10,10,100,50);
  22. g.DrawLine(pen,new Point(10,70) ,new Point(110,70));
  23. }
  24. }
  25. }