You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kev/Drawer/UCDraw/SigmaDrawerStyle/CurveSurfaceProperty.cs

49 lines
1.1 KiB
C#

1 month ago
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing.Design;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Xml.Serialization;
namespace GeoSigma.SigmaDrawerStyle
{
/// <summary>
/// 体积统计曲面类型
/// </summary>
public class CurveSurfaceProperty
{
private CurveSurfaceType curveSurfaceMethod;
/// <summary>
/// Initializes a new instance of the <see cref="CurveSurfaceProperty"/> class.
/// </summary>
public CurveSurfaceProperty()
{
}
[XmlIgnore]
[Category("体积"), DisplayName("\t\t\t曲面选择")]
public CurveSurfaceType SurfaceType
{
get
{
return this.curveSurfaceMethod;
}
set
{
this.curveSurfaceMethod = value;
}
}
public enum CurveSurfaceType
{
,
,
}
}
}