Files
wg_cpso/CPSO/Forms/51_Step/Controls/ViewStepControlParameter.cs

26 lines
869 B
C#
Raw 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 System.ComponentModel;
using DynamicTypeDescriptor;
namespace CPSO
{
[Serializable]
public abstract class ViewStepControlParameter
{
// Variables
private DynamicCustomTypeDescriptor _dctd;
// Properties
public abstract string Name { get; }
//
[Browsable(false)]
public DynamicCustomTypeDescriptor DynamicCustomTypeDescriptor { get { return _dctd; } set { _dctd = value; } }
public abstract CaeModel.StepControlParameter Base { get; }
}
}