资源简介
WINFORM 绘制流程图 开源 .net开源的矢量图、流程图这绘制软件,对学习.Net项目中的MVC架构、C#编程、GDI+图像处理、实现应用程序的撤消与重做等其他很多知识都有很好的帮助。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using Netron.Diagramming.Core;
using System.Drawing.Drawing2D;
using System.Runtime.Serialization;
namespace BasicShapes
{
[Serializable()]
[Shape(
“Triangle“ // Shape Name
“5B148C27-31F4-456f-8D1F-C7B8C8E86283“ // Shape Key
“Basic Shapes“ // Category
“A triangular shape.“ // Description
false)] // Is for internal use only? NO.
public class TriangleShape : SimpleShapebase
{
#region Fields
// ------------------------------------------------------------------
///
/// The current version - used when deserializing the shape.
///
// ------------------------------------------------------------------
protected double triangleShapeVersion = 1.0;
#endregion
#region Properties
// ------------------------------------------------------------------
///
/// Gets the graphics path that defines this triangle.
///
// ------------------------------------------------------------------
public GraphicsPath Path
{
get
{
GraphicsPath path = new GraphicsPath();
path.AddLine(TopCenter
BottomRightCorner);
path.AddLine(BottomRightCorner
BottomLeftCorner);
path.AddLine(BottomLeftCorner
TopCenter);
return path;
}
}
// ------------------------------------------------------------------
///
/// Gets the friendly name of this shape.
///
// ------------------------------------------------------------------
public override string EntityName
{
get
{
return “三角形“;
}
}
// ------------------------------------------------------------------
///
/// Returns the version of this shape.
///
// ------------------------------------------------------------------
public override double Version
{
get
{
return triangleShapeVersion;
}
}
#endregion
#region Constructors
// ------------------------------------------------------------------
///
/// Default constructor.
///
// ------------------------------------------------------------------
public TriangleShape()
: base()
{
}
// ------------------------------------------------------------------
///
/// Constructor that receives
相关资源
- 支付宝线下扫码支付(VS2005WINFORM简易
- asp.net(c#)开源权限管理系统
- C# WinForm调用Print2Flash将文档转换成s
- winform酒店管理系统
- 无边框窗体Winform四周阴影效果 C#完美
- c# winform换肤含源码包含winform皮肤64套
- Winform模仿360系统安全工具源码.zip
- npoi的excel读写代码C#实现,并用winfo
- C#Winform使用NPOI导入Excel数据
- DotNetChartingZedGraphMSChart折线图,柱状图
- LumiSoftsmtp邮件发送winform
- C#人事管理系统(winform版)功能独特
- 人事薪资系统(C# WINFORM)
- winform教程
- winform嵌入word
- C/S开发框架源码 winform快速开发框架
- 开源仿photoshop c#源码paint.net
- winform(c#)集成所有opencv功能demo
- winform生日提醒
- C#winform sql数据库源码(员工考勤系统
- c# winform大全(198个经典Csharp WinForm)
- C# Winform 视频流添加透明控件
- 开源GIS Sharpmap及其shp资源
- Iocomp.Net WinForms破解版导入了Dall例程可
- c#Winform获取摄像头扫描各种码
- C#大型OA办公系统
- 基于winform仿QQ软件
- 基于asp.net mvc的开源网站管理系统
- webkit.net 0.5版c#和winform嵌入chrome核心浏
- VS2012编译RTKLIB——GNSS定位开源库
评论
共有 条评论