DataEntry.Standard (with checkBoxes) and DataEntry.Combined entry forms added.

IWaterMeter.Disabled supported.
This commit is contained in:
Milan Hanajik
2015-03-24 10:09:47 +01:00
parent 2902f36332
commit d1e9537610
27 changed files with 4572 additions and 0 deletions
@@ -0,0 +1,18 @@
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.DataEntry.Standard
{
public class EntryFormFactory : IComponentFactory
{
public string ClassName { get { return "DataEntry-Standard"; } }
public void ResetStaticProperties() { EntryForm.ResetStaticProperties(); }
public IComponentCfg DefaultConfig() { return new EntryFormCfg(this); }
public IComponentCfg CmpntCfgFromCmpntEntity(Entities.Component component)
{
return ComponentCfgBase.CreateFromDbEntity(typeof(EntryFormCfg), component, this);
}
}
}