分析模块重新调整
This commit is contained in:
@@ -7,11 +7,13 @@ namespace CaeKnowledge.View
|
||||
public class ViewFeLog : INotifyPropertyChanged
|
||||
{
|
||||
public ViewFeLog(
|
||||
string jobName,
|
||||
int stepId,
|
||||
string stepName,
|
||||
int id, double x, double y, double z,
|
||||
double all= 0.0, double u = 0.0, double v = 0.0, double w = 0.0)
|
||||
{
|
||||
_jobName = jobName;
|
||||
_stepId = stepId;
|
||||
_stepName = stepName;
|
||||
_id = id;
|
||||
_x = x;
|
||||
_y = y;
|
||||
@@ -22,14 +24,26 @@ namespace CaeKnowledge.View
|
||||
_w = w;
|
||||
}
|
||||
|
||||
private string _jobName;
|
||||
[DisplayName("Job名称")]
|
||||
public string JobName
|
||||
private int _stepId;
|
||||
[DisplayName("Step ID")]
|
||||
public int StepId
|
||||
{
|
||||
get => _jobName;
|
||||
get => _stepId;
|
||||
set
|
||||
{
|
||||
_jobName = value;
|
||||
_stepId =value;
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private string _stepName;
|
||||
[DisplayName("Step名称")]
|
||||
public string StepName
|
||||
{
|
||||
get => _stepName;
|
||||
set
|
||||
{
|
||||
_stepName = value;
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,11 +16,11 @@ namespace CaeKnowledge.View
|
||||
_base = @base;
|
||||
}
|
||||
|
||||
[DisplayName("基准Step名称")]
|
||||
[DisplayName("Step名称")]
|
||||
public string StepName => _base.StepName;
|
||||
|
||||
[DisplayName("新Step名称")]
|
||||
public string NewStepName => _base.NewStepName;
|
||||
[DisplayName("Surface名称")]
|
||||
public string SurfaceName => _base.SurfaceName;
|
||||
|
||||
public double X => _base.X;
|
||||
|
||||
@@ -34,12 +34,6 @@ namespace CaeKnowledge.View
|
||||
|
||||
public double Fz => _base.Fz;
|
||||
|
||||
[DisplayName("最近节点Id")]
|
||||
public int NodeId=> _base.Node.Id;
|
||||
|
||||
[DisplayName("最近距离")]
|
||||
public double MinimumDistance => _base.MinimumDistance;
|
||||
|
||||
[Browsable(false)]
|
||||
public ProcessingJob Base => _base;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user