C2025-023 - Electronic Procedures - Modifications to PROMS

Working on Adding functionality for EP input for tables
This commit is contained in:
2025-04-23 07:42:28 -04:00
parent 8ef08c53b3
commit 6db9567eb9
6 changed files with 489 additions and 0 deletions

View File

@@ -150,6 +150,13 @@ namespace Volian.Controls.Library
panelEP.Controls.Add(lb, 1, panelEP.RowCount - 1);
}
if (EP.type.ToLower() == "tableinput")
{
TablePropertiesControl tp = new TablePropertiesControl(EP.text, null);
panelEP.Controls.Add(tp, 1, panelEP.RowCount - 1);
}
}
Load += new EventHandler(Form1Load_setDefaults);