Files
wg_cpso/CPSO/Forms/84_Transformation/ViewTransformation.cs

41 lines
1.3 KiB
C#
Raw Permalink Normal View History

2026-03-25 18:20:24 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CaeMesh;
using CaeGlobals;
using System.ComponentModel;
using DynamicTypeDescriptor;
using System.Drawing.Design;
using CaeResults;
namespace CPSO.Forms
{
[Serializable]
public abstract class ViewTransformation
{
// Variables
protected DynamicCustomTypeDescriptor _dctd = null;
protected ItemSetData _startPointItemSetData;
protected ItemSetData _endPointItemSetData;
// Properties
//[Browsable(false)]
[Category("Data")]
[OrderedDisplayName(0, 10, "Name")]
[Description("Enter the transformation name.")]
[Id(1, 1)]
public virtual string Name { get; set; }
// Constructors
// Methods
[Browsable(false)]
public abstract Transformation Base { get; }
}
}