在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#做的windows画图程序源码,不少于3个不同的例子

C#做的windows画图程序源码,不少于3个不同的例子

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:2.23M
  • 下载次数:6
  • 浏览次数:36
  • 发布时间:2023-12-15
  • 实例类别:C#语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: windows window wind win 程序

实例介绍

【实例简介】C#做的画图软件源码,windows画图程序源码,不少于3个不同的例子 C#做的画图软件源码,windows画图程序源码,不少于3个不同的例子 C#做的画图软件源码,windows画图程序源码,不少于3个不同的例子 C#做的画图软件...

【实例截图】

from clipboard

from clipboard

from clipboard

【核心代码】

.
├── C#做的windows画图程序源码,不少于3个不同的例子.rar
└── 自己参照做的画图例子
    ├── MyPainTest
    │   └── MyPainTest
    │       ├── MyPainTest
    │       │   ├── Circle.cs
    │       │   ├── DLable.cs
    │       │   ├── DRectangle.cs
    │       │   ├── DShapeList.cs
    │       │   ├── DShope.cs
    │       │   ├── Form1.Designer.cs
    │       │   ├── Form1.cs
    │       │   ├── Form1.resx
    │       │   ├── Line.cs
    │       │   ├── MyPainTest.csproj
    │       │   ├── Program.cs
    │       │   ├── Properties
    │       │   │   ├── AssemblyInfo.cs
    │       │   │   ├── Resources.Designer.cs
    │       │   │   ├── Resources.resx
    │       │   │   ├── Settings.Designer.cs
    │       │   │   └── Settings.settings
    │       │   ├── ShapeFactory.cs
    │       │   ├── bin
    │       │   │   └── Debug
    │       │   │       ├── MyPainTest.exe
    │       │   │       ├── MyPainTest.pdb
    │       │   │       ├── MyPainTest.vshost.exe
    │       │   │       └── MyPainTest.vshost.exe.manifest
    │       │   └── obj
    │       │       └── Debug
    │       │           ├── MyPainTest.Form1.resources
    │       │           ├── MyPainTest.Properties.Resources.resources
    │       │           ├── MyPainTest.csproj.FileListAbsolute.txt
    │       │           ├── MyPainTest.csproj.GenerateResource.Cache
    │       │           ├── MyPainTest.exe
    │       │           ├── Refactor
    │       │           └── TempPE
    │       ├── MyPainTest.sln
    │       └── MyPainTest.suo
    ├── MyPainTest1
    │   └── MyPainTest
    │       ├── MyPainTest
    │       │   ├── Circle.cs
    │       │   ├── DRectangle.cs
    │       │   ├── DShapeList.cs
    │       │   ├── DShope.cs
    │       │   ├── Form1.Designer.cs
    │       │   ├── Form1.cs
    │       │   ├── Form1.resx
    │       │   ├── Line.cs
    │       │   ├── MousePoint.cs
    │       │   ├── MyPainTest.csproj
    │       │   ├── Program.cs
    │       │   ├── Properties
    │       │   │   ├── AssemblyInfo.cs
    │       │   │   ├── Resources.Designer.cs
    │       │   │   ├── Resources.resx
    │       │   │   ├── Settings.Designer.cs
    │       │   │   └── Settings.settings
    │       │   ├── bin
    │       │   │   └── Debug
    │       │   │       ├── MyPainTest.exe
    │       │   │       ├── MyPainTest.pdb
    │       │   │       ├── MyPainTest.vshost.exe
    │       │   │       └── MyPainTest.vshost.exe.manifest
    │       │   └── obj
    │       │       └── Debug
    │       │           ├── MyPainTest.Form1.resources
    │       │           ├── MyPainTest.Properties.Resources.resources
    │       │           ├── MyPainTest.csproj.FileListAbsolute.txt
    │       │           ├── MyPainTest.csproj.GenerateResource.Cache
    │       │           ├── MyPainTest.exe
    │       │           ├── MyPainTest.pdb
    │       │           ├── Refactor
    │       │           └── TempPE
    │       ├── MyPainTest.sln
    │       └── MyPainTest.suo
    ├── MyPainTest12
    │   └── MyPainTest
    │       ├── MyPainTest
    │       │   ├── Circle.cs
    │       │   ├── DRectangle.cs
    │       │   ├── DShapeList.cs
    │       │   ├── DShope.cs
    │       │   ├── Form1.Designer.cs
    │       │   ├── Form1.cs
    │       │   ├── Form1.resx
    │       │   ├── Line.cs
    │       │   ├── MousePoint.cs
    │       │   ├── MyPainTest.csproj
    │       │   ├── Program.cs
    │       │   ├── Properties
    │       │   │   ├── AssemblyInfo.cs
    │       │   │   ├── Resources.Designer.cs
    │       │   │   ├── Resources.resx
    │       │   │   ├── Settings.Designer.cs
    │       │   │   └── Settings.settings
    │       │   ├── bin
    │       │   │   └── Debug
    │       │   │       ├── MyPainTest.exe
    │       │   │       ├── MyPainTest.pdb
    │       │   │       ├── MyPainTest.vshost.exe
    │       │   │       └── MyPainTest.vshost.exe.manifest
    │       │   └── obj
    │       │       └── Debug
    │       │           ├── MyPainTest.Form1.resources
    │       │           ├── MyPainTest.Properties.Resources.resources
    │       │           ├── MyPainTest.csproj.FileListAbsolute.txt
    │       │           ├── MyPainTest.csproj.GenerateResource.Cache
    │       │           ├── MyPainTest.exe
    │       │           ├── MyPainTest.pdb
    │       │           ├── Refactor
    │       │           └── TempPE
    │       ├── MyPainTest.sln
    │       └── MyPainTest.suo
    ├── WindowsApplication1
    │   ├── Anteprima.Designer.cs
    │   ├── Anteprima.cs
    │   ├── Anteprima.resx
    │   ├── CommandForm.Designer.cs
    │   ├── CommandForm.cs
    │   ├── CommandForm.resx
    │   ├── Form1.Designer.cs
    │   ├── Form1.cs
    │   ├── Form1.resx
    │   ├── Handle.cs
    │   ├── Help.Designer.cs
    │   ├── Help.cs
    │   ├── Help.resx
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── RichTextBoxPrintCtrl.cs
    │   ├── Settings.cs
    │   ├── Shapes.cs
    │   ├── UserControl1.Designer.cs
    │   ├── UserControl1.cs
    │   ├── UserControl1.resx
    │   ├── WindowsApplication1.csproj
    │   ├── WindowsApplication1.csproj.user
    │   ├── bin
    │   │   ├── Debug
    │   │   │   ├── AxInterop.SHDocVw.dll
    │   │   │   ├── Interop.SHDocVw.dll
    │   │   │   ├── WindowsApplication1.exe
    │   │   │   ├── WindowsApplication1.pdb
    │   │   │   ├── WindowsApplication1.vshost.exe
    │   │   │   └── WindowsApplication1.vshost.exe.manifest
    │   │   └── Release
    │   │       ├── AxInterop.SHDocVw.dll
    │   │       ├── Interop.SHDocVw.dll
    │   │       ├── RichTextBoxPrintCtrl.dll
    │   │       ├── RichTextBoxPrintCtrl.pdb
    │   │       ├── UserControl1.Designer.cs
    │   │       ├── UserControl1.cs
    │   │       ├── UserControl1.resx
    │   │       ├── WindowsApplication1.exe
    │   │       └── WindowsApplication1.pdb
    │   ├── obj
    │   │   └── Debug
    │   │       ├── AxInterop.SHDocVw.dll
    │   │       ├── Interop.SHDocVw.dll
    │   │       ├── TempPE
    │   │       │   └── Properties.Resources.Designer.cs.dll
    │   │       ├── WindowsApplication1.Anteprima.resources
    │   │       ├── WindowsApplication1.Form1.resources
    │   │       ├── WindowsApplication1.Help.resources
    │   │       ├── WindowsApplication1.Properties.Resources.resources
    │   │       ├── WindowsApplication1.csproj.FileListAbsolute.txt
    │   │       ├── WindowsApplication1.csproj.GenerateResource.Cache
    │   │       ├── WindowsApplication1.csproj.ResolveComReference.cache
    │   │       ├── WindowsApplication1.exe
    │   │       ├── WindowsApplication1.pdb
    │   │       ├── WindowsApplication1.richForm2.resources
    │   │       ├── WindowsApplication1.toolBox.resources
    │   │       └── WindowsApplication1.vectShapes.resources
    │   ├── richForm2.Designer.cs
    │   ├── richForm2.cs
    │   ├── richForm2.resx
    │   ├── toolBox.Designer.cs
    │   ├── toolBox.cs
    │   ├── toolBox.resx
    │   ├── vectShapes.Designer.cs
    │   ├── vectShapes.cs
    │   └── vectShapes.resx
    ├── WritePig
    │   ├── Form1
    │   │   ├── Anteprima.Designer.cs
    │   │   ├── Anteprima.cs
    │   │   ├── Anteprima.resx
    │   │   ├── CodeDomSerializationHelper.cs
    │   │   ├── Form1.csproj
    │   │   ├── FormMain.Designer.cs
    │   │   ├── FormMain.cs
    │   │   ├── FormMain.resx
    │   │   ├── Handle.cs
    │   │   ├── Program.cs
    │   │   ├── Properties
    │   │   │   ├── AssemblyInfo.cs
    │   │   │   ├── Resources.Designer.cs
    │   │   │   ├── Resources.resx
    │   │   │   ├── Settings.Designer.cs
    │   │   │   └── Settings.settings
    │   │   ├── RichTextBoxPrintCtrl.Designer.cs
    │   │   ├── RichTextBoxPrintCtrl.cs
    │   │   ├── Shapes.cs
    │   │   ├── UtlAttrBox.Designer.cs
    │   │   ├── UtlAttrBox.cs
    │   │   ├── UtlAttrBox.resx
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── Form1.exe
    │   │   │       ├── Form1.pdb
    │   │   │       ├── Form1.vshost.exe
    │   │   │       └── Form1.vshost.exe.manifest
    │   │   ├── drowBox.Designer.cs
    │   │   ├── drowBox.cs
    │   │   ├── drowBox.resx
    │   │   ├── obj
    │   │   │   └── Debug
    │   │   │       ├── Form1.Anteprima.resources
    │   │   │       ├── Form1.FormMain.resources
    │   │   │       ├── Form1.Properties.Resources.resources
    │   │   │       ├── Form1.UtlAttrBox.resources
    │   │   │       ├── Form1.csproj.FileListAbsolute.txt
    │   │   │       ├── Form1.csproj.GenerateResource.Cache
    │   │   │       ├── Form1.drowBox.resources
    │   │   │       ├── Form1.exe
    │   │   │       ├── Form1.pdb
    │   │   │       ├── Form1.richForm2.resources
    │   │   │       ├── Form1.vectShapes.resources
    │   │   │       ├── Refactor
    │   │   │       └── TempPE
    │   │   ├── richForm2.Designer.cs
    │   │   ├── richForm2.cs
    │   │   ├── richForm2.resx
    │   │   ├── vectShapes.Designer.cs
    │   │   ├── vectShapes.cs
    │   │   └── vectShapes.resx
    │   ├── WritePig.sln
    │   └── WritePig.suo
    ├── demo属性框
    │   ├── Backup
    │   │   ├── demo.sln
    │   │   ├── demo1
    │   │   │   ├── Program.cs
    │   │   │   └── demo1.csproj
    │   │   └── demo2
    │   │       ├── Form1.cs
    │   │       ├── Form1.designer.cs
    │   │       ├── Form1.resx
    │   │       ├── Form2.cs
    │   │       ├── Form2.designer.cs
    │   │       ├── Form2.resx
    │   │       ├── Program.cs
    │   │       ├── Properties
    │   │       │   ├── Resources.Designer.cs
    │   │       │   ├── Resources.resx
    │   │       │   ├── Settings.Designer.cs
    │   │       │   └── Settings.settings
    │   │       ├── demo2.csproj
    │   │       └── utilities.cs
    │   ├── ConsoleApplication1
    │   │   ├── ConsoleApplication1.csproj
    │   │   ├── Program.cs
    │   │   ├── Properties
    │   │   │   └── AssemblyInfo.cs
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── ConsoleApplication1.exe
    │   │   │       ├── ConsoleApplication1.pdb
    │   │   │       ├── ConsoleApplication1.vshost.exe
    │   │   │       └── ConsoleApplication1.vshost.exe.manifest
    │   │   └── obj
    │   │       └── Debug
    │   │           ├── ConsoleApplication1.csproj.FileListAbsolute.txt
    │   │           ├── ConsoleApplication1.exe
    │   │           ├── ConsoleApplication1.pdb
    │   │           └── TempPE
    │   ├── UpgradeLog.XML
    │   ├── _UpgradeReport_Files
    │   │   ├── UpgradeReport.css
    │   │   ├── UpgradeReport.xslt
    │   │   ├── UpgradeReport_Minus.gif
    │   │   └── UpgradeReport_Plus.gif
    │   ├── demo.sln
    │   ├── demo.suo
    │   ├── demo1
    │   │   ├── Program.cs
    │   │   ├── Properties
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── demo1.exe
    │   │   │       ├── demo1.pdb
    │   │   │       └── demo1.vshost.exe
    │   │   ├── demo1.csproj
    │   │   └── obj
    │   │       └── Debug
    │   │           ├── Refactor
    │   │           ├── TempPE
    │   │           ├── demo1.csproj.FileListAbsolute.txt
    │   │           ├── demo1.exe
    │   │           └── demo1.pdb
    │   └── demo2
    │       ├── AppSetting.cs
    │       ├── FileNameConverter.cs
    │       ├── Form1.Designer.cs
    │       ├── Form1.cs
    │       ├── Form1.resx
    │       ├── Form2.Designer.cs
    │       ├── Form2.cs
    │       ├── Form2.resx
    │       ├── Form3.Designer.cs
    │       ├── Form3.cs
    │       ├── Form3.resx
    │       ├── OptionsDialog .Designer.cs
    │       ├── OptionsDialog .cs
    │       ├── OptionsDialog .resx
    │       ├── Program.cs
    │       ├── Properties
    │       │   ├── Resources.Designer.cs
    │       │   ├── Resources.resx
    │       │   ├── Settings.Designer.cs
    │       │   └── Settings.settings
    │       ├── SpellingOptions.cs
    │       ├── SpellingOptionsConverter.cs
    │       ├── bin
    │       │   └── Debug
    │       │       ├── demo2.exe
    │       │       ├── demo2.pdb
    │       │       ├── demo2.vshost.exe
    │       │       └── demo2.vshost.exe.manifest
    │       ├── demo2.csproj
    │       ├── demo2.csproj.user
    │       ├── obj
    │       │   └── Debug
    │       │       ├── Refactor
    │       │       ├── TempPE
    │       │       │   └── Properties.Resources.Designer.cs.dll
    │       │       ├── demo2.Form1.resources
    │       │       ├── demo2.Form2.resources
    │       │       ├── demo2.Form3.resources
    │       │       ├── demo2.OptionsDialog.resources
    │       │       ├── demo2.Properties.Resources.resources
    │       │       ├── demo2.csproj.FileListAbsolute.txt
    │       │       ├── demo2.csproj.GenerateResource.Cache
    │       │       ├── demo2.exe
    │       │       └── demo2.pdb
    │       └── utilities.cs
    └── myPaint
        ├── Backup
        │   ├── FloodFill.cs
        │   ├── Form1.Designer.cs
        │   ├── Form1.cs
        │   ├── Form1.resx
        │   ├── Form1.zh-CN.resx
        │   ├── Program.cs
        │   ├── Properties
        │   │   ├── AssemblyInfo.cs
        │   │   ├── Resources.Designer.cs
        │   │   ├── Resources.resx
        │   │   ├── Settings.Designer.cs
        │   │   └── Settings.settings
        │   ├── Resources
        │   │   ├── Brush.PNG
        │   │   ├── Curve.PNG
        │   │   ├── Ellipse.PNG
        │   │   ├── Erase.PNG
        │   │   ├── Fill.PNG
        │   │   ├── Line.PNG
        │   │   ├── Pen.PNG
        │   │   ├── PickColor.PNG
        │   │   ├── Poly.PNG
        │   │   ├── Rect2.PNG
        │   │   ├── Select.PNG
        │   │   ├── Select2.PNG
        │   │   ├── Spray.PNG
        │   │   ├── Text.PNG
        │   │   ├── Zoom.PNG
        │   │   ├── aa (2).jpg
        │   │   ├── aa (2)1.jpg
        │   │   ├── bb.jpg
        │   │   └── rect.PNG
        │   ├── myPaint.csproj
        │   ├── myPaint.sln
        │   └── myPaint.suo
        ├── FloodFill.cs
        ├── Form1.Designer.cs
        ├── Form1.cs
        ├── Form1.resx
        ├── Form1.zh-CN.resx
        ├── Program.cs
        ├── Properties
        │   ├── AssemblyInfo.cs
        │   ├── Resources.Designer.cs
        │   ├── Resources.resx
        │   ├── Settings.Designer.cs
        │   └── Settings.settings
        ├── Resources
        │   ├── Brush.PNG
        │   ├── Curve.PNG
        │   ├── Ellipse.PNG
        │   ├── Erase.PNG
        │   ├── Fill.PNG
        │   ├── Line.PNG
        │   ├── Pen.PNG
        │   ├── PickColor.PNG
        │   ├── Poly.PNG
        │   ├── Rect2.PNG
        │   ├── Select.PNG
        │   ├── Select2.PNG
        │   ├── Spray.PNG
        │   ├── Text.PNG
        │   ├── Thumbs.db
        │   ├── Zoom.PNG
        │   ├── aa (2).jpg
        │   ├── aa (2)1.jpg
        │   ├── bb.jpg
        │   ├── rect.PNG
        │   └── 无标题.png
        ├── UpgradeLog.XML
        ├── _UpgradeReport_Files
        │   ├── UpgradeReport.css
        │   ├── UpgradeReport.xslt
        │   ├── UpgradeReport_Minus.gif
        │   └── UpgradeReport_Plus.gif
        ├── bin
        │   └── Debug
        │       ├── image1
        │       ├── myPaint.exe
        │       ├── myPaint.pdb
        │       ├── myPaint.vshost.exe
        │       ├── myPaint.vshost.exe.manifest
        │       └── zh-CN
        │           └── myPaint.resources.dll
        ├── myPaint.csproj
        ├── myPaint.sln
        ├── myPaint.suo
        └── obj
            ├── Debug
            │   ├── Refactor
            │   ├── TempPE
            │   │   └── Properties.Resources.Designer.cs.dll
            │   ├── myPaint.Form1.resources
            │   ├── myPaint.Form1.zh-CN.resources
            │   ├── myPaint.Properties.Resources.resources
            │   ├── myPaint.csproj.FileListAbsolute.txt
            │   ├── myPaint.csproj.GenerateResource.Cache
            │   ├── myPaint.exe
            │   ├── myPaint.pdb
            │   └── zh-CN
            │       └── myPaint.resources.dll
            └── myPaint.csproj.FileListAbsolute.txt

92 directories, 366 files


实例下载地址

C#做的windows画图程序源码,不少于3个不同的例子

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警