资源简介
这是用C# GDI实现的简易画板Demo,对应博文http://blog.csdn.net/luols/article/details/7171668,有需要的朋友可以下载样例试用
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
namespace GDIDemo
{
public partial class Form1 : Form
{
Bitmap originImg;
Image finishImg;
Graphics g;
DrawType dType;
Point StartPoint EndPoint FontPoint;
Pen p = new Pen(Color.Black 1);
bool IsDraw;
Font font;
Rectangle FontRect;
///
/// 画笔颜色
///
Color DrawColor
{
get { return p.Color; }
set { p.Color = value; }
}
///
/// 画笔宽度
///
float PenWidth
{
set { p.Width = value; }
}
public Form1()
{
InitializeComponent();
cmbThickness.SelectedIndex = 0;
//将文本输入框的父容器设为picDraw,否则显示时会出现错位
txtWrite.Parent = picDraw;
this.Setstyle(Controlstyles.OptimizedDoubleBuffer | Controlstyles.AllPaintingInWmPaint | Controlstyles.UserPaint true);
this.Updatestyles();
//将线帽样式设为圆线帽,否则笔宽变宽时会出现明显的缺口
p.StartCap = LineCap.Round;
p.EndCap = LineCap.Round;
originImg = new Bitmap(picDraw.Width picDraw.Height);
g = Graphics.FromImage(originImg);
//画布背景初始化为白底
g.Clear(Color.White);
picDraw.Image = originImg;
finishImg = (Image)originImg.Clone();
}
private void btnArrow_Click(object sender EventArgs e)
{
dType = DrawType.None;
txtWrite.Visible = false;
txtWrite.Text = ““;
}
private void btnPen_Click(object sender EventArgs e)
{
dType = DrawType.Pen;
txtWrite.Visible = false;
txtWrite.Text = ““;
}
private void btnLine_Click(object sender EventArgs e)
{
dType = DrawType.Line;
txtWrite.Visible = false;
txtWrite.Text = ““;
}
private void btnRect_Click(object sender EventArgs e)
{
dType = DrawType.Rect;
txtWrite.Visible = false;
txtWrite.Text = ““;
}
private void btnEllipse_Click(object sender EventArgs e)
{
dType = DrawType.Ellipse;
txtWrite.Visible = false;
txtWrite.Text = ““;
}
private void btnEraser_Click(object sender EventArgs e)
{
dType = DrawType.Eraser;
txtWrite.Visible = false;
txtWrite.Text = ““;
}
private void btnWrite_Click(object sender EventArgs e)
{
dType = DrawType.Write;
FontDialog fd = ne
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 17408 2015-06-30 11:15 GDIDemo\bin\Debug\GDIDemo.exe
文件 34304 2015-06-30 11:15 GDIDemo\bin\Debug\GDIDemo.pdb
文件 11608 2015-06-30 11:15 GDIDemo\bin\Debug\GDIDemo.vshost.exe
文件 490 2013-03-18 17:00 GDIDemo\bin\Debug\GDIDemo.vshost.exe.manifest
文件 11529 2015-06-30 11:15 GDIDemo\Form1.cs
文件 11691 2015-06-30 11:15 GDIDemo\Form1.Designer.cs
文件 5817 2015-06-30 11:15 GDIDemo\Form1.resx
文件 3421 2015-06-30 11:03 GDIDemo\GDIDemo.csproj
文件 5452 2015-06-30 11:15 GDIDemo\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 834 2015-06-30 11:15 GDIDemo\obj\x86\Debug\GDIDemo.csproj.FileListAbsolute.txt
文件 975 2015-06-30 11:15 GDIDemo\obj\x86\Debug\GDIDemo.csproj.GenerateResource.Cache
文件 17408 2015-06-30 11:15 GDIDemo\obj\x86\Debug\GDIDemo.exe
文件 180 2015-06-30 11:15 GDIDemo\obj\x86\Debug\GDIDemo.Form1.resources
文件 34304 2015-06-30 11:15 GDIDemo\obj\x86\Debug\GDIDemo.pdb
文件 180 2015-06-30 11:11 GDIDemo\obj\x86\Debug\GDIDemo.Properties.Resources.resources
文件 468 2015-06-30 10:53 GDIDemo\Program.cs
文件 1364 2015-06-30 10:53 GDIDemo\Properties\AssemblyInfo.cs
文件 2866 2015-06-30 10:53 GDIDemo\Properties\Resources.Designer.cs
文件 5612 2015-06-30 10:53 GDIDemo\Properties\Resources.resx
文件 1094 2015-06-30 10:53 GDIDemo\Properties\Settings.Designer.cs
文件 249 2015-06-30 10:53 GDIDemo\Properties\Settings.settings
目录 0 2015-06-30 10:53 GDIDemo\obj\x86\Debug\TempPE
目录 0 2015-06-30 11:15 GDIDemo\obj\x86\Debug
目录 0 2015-06-30 11:11 GDIDemo\bin\Debug
目录 0 2015-06-30 10:53 GDIDemo\obj\x86
目录 0 2015-06-30 10:53 GDIDemo\bin
目录 0 2015-06-30 10:53 GDIDemo\obj
目录 0 2015-06-30 10:53 GDIDemo\Properties
目录 0 2015-06-30 10:54 GDIDemo
----------- --------- ---------- ----- ----
............此处省略2个文件信息
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
- vb调用c#编写的串口DLL文件(vb源码
评论
共有 条评论