51 lines
1.4 KiB
C#
51 lines
1.4 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using CaeGlobals;
|
|||
|
|
using DynamicTypeDescriptor;
|
|||
|
|
|
|||
|
|
namespace CPSO
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
public class ViewBoundaryDisplacementStep : ViewStep
|
|||
|
|
{
|
|||
|
|
// Variables
|
|||
|
|
|
|||
|
|
|
|||
|
|
// Properties
|
|||
|
|
|
|||
|
|
|
|||
|
|
// Constructors
|
|||
|
|
public ViewBoundaryDisplacementStep(CaeModel.BoundaryDisplacementStep step, bool installProvider = true)
|
|||
|
|
: base(step)
|
|||
|
|
{
|
|||
|
|
if (installProvider)
|
|||
|
|
{
|
|||
|
|
InstallProvider();
|
|||
|
|
UpdateVisibility();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
// Methods
|
|||
|
|
public override CaeModel.Step GetBase()
|
|||
|
|
{
|
|||
|
|
return _step;
|
|||
|
|
}
|
|||
|
|
public override void InstallProvider()
|
|||
|
|
{
|
|||
|
|
base.InstallProvider();
|
|||
|
|
}
|
|||
|
|
public override void UpdateVisibility()
|
|||
|
|
{
|
|||
|
|
base.UpdateVisibility();
|
|||
|
|
//
|
|||
|
|
_dctd.GetProperty(nameof(SolverType)).SetIsBrowsable(false);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|