50 lines
1.4 KiB
C#
50 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 ViewUncoupledTempDispStep : ViewHeatTransferStep
|
|||
|
|
{
|
|||
|
|
// Variables
|
|||
|
|
|
|||
|
|
|
|||
|
|
// Properties
|
|||
|
|
|
|||
|
|
|
|||
|
|
// Constructors
|
|||
|
|
public ViewUncoupledTempDispStep(CaeModel.UncoupledTempDispStep step, bool installProvider = true)
|
|||
|
|
: base(step, false)
|
|||
|
|
{
|
|||
|
|
if (installProvider)
|
|||
|
|
{
|
|||
|
|
InstallProvider();
|
|||
|
|
UpdateVisibility();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
// Methods
|
|||
|
|
public override CaeModel.Step GetBase()
|
|||
|
|
{
|
|||
|
|
return _heatTransferStep;
|
|||
|
|
}
|
|||
|
|
public override void InstallProvider()
|
|||
|
|
{
|
|||
|
|
base.InstallProvider();
|
|||
|
|
}
|
|||
|
|
public override void UpdateVisibility()
|
|||
|
|
{
|
|||
|
|
base.UpdateVisibility();
|
|||
|
|
//
|
|||
|
|
_dctd.GetProperty(nameof(Nlgeom)).SetIsBrowsable(true);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|