protected override string GetParameterTitle() { if (!string.IsNullOrEmpty(title)) { return(title); } title = ScienceDB.GetExperimentInfo(experimentId)?.Title ?? experimentId; title = Localizer.Format("#KerCon_RunExperimentX", title); // Run experiment <<1>> return(title); }
public override string GetTitle(EvaluationContext context) { string title = description ?? shortDescription; if (string.IsNullOrEmpty(title)) { var info = ScienceDB.GetExperimentInfo(experimentId); title = info?.Title; } return(title ?? experimentId); }