• 大小: 0.04M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签:

资源简介

C# 绘制图 实例源码下载

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
//QQ223857666勾月guocan@msn.cn
namespace SPLINE
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Paint(object sender PaintEventArgs e)
        {
            Point[] points = {
 new Point(60 60)
 new Point(150 80)
 new Point(200 40)
 new Point(180 120)
 new Point(120 100)
 new Point(80 160)};

            Pen pen = new Pen(Color.FromArgb(255 0 0 255));
                e.Graphics.DrawClosedCurve(pen points);
        }

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        250  2016-11-27 15:11  021用C#绘制样条曲线\readme.txt

     文件        144  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\app.config

     文件        144  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\bin\Debug\SPLINE.exe.config

     文件      26112  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\bin\Debug\SPLINE.pdb

     文件      11592  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\bin\Debug\SPLINE.vshost.exe

     文件        144  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\bin\Debug\SPLINE.vshost.exe.config

     文件        490  2010-03-17 22:39  021用C#绘制样条曲线\SPLINE\bin\Debug\SPLINE.vshost.exe.manifest

     文件        818  2008-12-31 11:13  021用C#绘制样条曲线\SPLINE\Form1.cs

     文件       1495  2008-12-31 11:13  021用C#绘制样条曲线\SPLINE\Form1.Designer.cs

     文件       5814  2008-12-31 11:13  021用C#绘制样条曲线\SPLINE\Form1.resx

     文件       6228  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        376  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\obj\Debug\GenerateResource.read.1.tlog

     文件        830  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\obj\Debug\GenerateResource.write.1.tlog

     文件       1810  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\obj\Debug\SPLINE.csproj.FileListAbsolute.txt

     文件        847  2008-12-31 11:13  021用C#绘制样条曲线\SPLINE\obj\Debug\SPLINE.csproj.GenerateResource.Cache

     文件       8192  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\obj\Debug\SPLINE.exe

     文件        180  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\obj\Debug\SPLINE.Form1.resources

     文件      26112  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\obj\Debug\SPLINE.pdb

     文件        180  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\obj\Debug\SPLINE.Properties.Resources.resources

     文件       4608  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll

     文件        487  2008-12-31 11:10  021用C#绘制样条曲线\SPLINE\Program.cs

     文件       1368  2008-12-31 11:10  021用C#绘制样条曲线\SPLINE\Properties\AssemblyInfo.cs

     文件       2850  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\Properties\Resources.Designer.cs

     文件       5612  2008-12-31 11:10  021用C#绘制样条曲线\SPLINE\Properties\Resources.resx

     文件       1104  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\Properties\Settings.Designer.cs

     文件        249  2008-12-31 11:10  021用C#绘制样条曲线\SPLINE\Properties\Settings.settings

     文件       5460  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\SPLINE.csproj

     文件        452  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE\SPLINE.csproj.user

     文件        908  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE.sln

    ..A..H.     17408  2012-03-24 09:34  021用C#绘制样条曲线\SPLINE.suo

............此处省略13个文件信息

评论

共有 条评论