资源简介
代码片段和文件信息
//#####################################################################################
//★★★★★★★ http://www.cnpopsoft.com [华普软件] ★★★★★★★
//★★ 华普软件-VB、C#专业论文与源码荟萃,敏捷开发,平台战略,让商业软件靓起来! ★★
//#####################################################################################
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.Drawing.Drawing2D;
namespace CNPOPSOFT.Controls
{
[Serializable]
public class CustomPoint
{
public CustomPoint()
{
this.x = 0;
this.y = 0;
}
public CustomPoint(int x int y)
{
this.x = (float)x;
this.y = (float)y;
}
public CustomPoint(float x float y)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
----------- --------- ---------- ----- ----
1074944 64
- 上一篇:C# winform截屏
- 下一篇:TCP UDP测试工具 模拟发送接收数据
评论
共有 条评论