C2013-005 – Allow user to change the procedure panel’s title

This commit is contained in:
2013-03-27 14:37:53 +00:00
parent 9709fbac59
commit 8680480492
7 changed files with 281 additions and 280 deletions

View File

@@ -209,6 +209,9 @@ namespace VEPROMS
myAnnotationTypeInfoList = AnnotationTypeInfoList.Get();
lbAnnotationTypes.DataSource = myLocalAnnotationTypeInfoList = new LocalAnnotationTypeInfoList(myAnnotationTypeInfoList);
lbAnnotationTypes.DisplayMember = "Name";
// make visible the text box to allow the user to change the Procedure Panel's heading (title) on the panel bar
ppRTxtHeading.Visible = true;
lblHeading.Visible = true;
}
else
{
@@ -294,6 +297,9 @@ namespace VEPROMS
ppLblAutoDuplexDefault.Visible = false;
ppBtnDeftDisAutoDuplx.Visible = false;
}
// HIDE the text box that allows the user to change the Procedure Panel's heading (title) on the panel bar
ppRTxtHeading.Visible = false;
lblHeading.Visible = false;
}
_Initializing = false;
}
@@ -1593,6 +1599,7 @@ namespace VEPROMS
}
#endregion
}
public partial class LocalStageInfo
{