c#画笔Pen画虚线

来源:互联网 发布:经济学的大数据 编辑:程序博客网 时间:2024/04/29 10:15
 
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using System.Drawing.Drawing2D;
  9. namespace WindowsApplication2
  10. {
  11.     public partial class Form11 : Form
  12.     {
  13.         public Form11()
  14.         {
  15.             InitializeComponent();
  16.         }
  17.         private void button1_Click(object sender, EventArgs e)
  18.         {
  19.             Pen pen2 = new Pen(Color.Blue, 12);
  20.             pen2.DashStyle = DashStyle.Custom;
  21.             pen2.DashPattern = new float[] { 1f, 1f };
  22.             Graphics g2 = this.CreateGraphics();
  23.             g2.DrawLine(pen2, 10, 150, 500, 150);
  24.         }
  25.     }
  26. }
原创粉丝点击