/// /// Copyright (c) 2013-2015 Sensus Metering Systems /// using System; using System.Windows.Forms; using log4net; using TBF.BenchControl.Generic; using TBF.Resources; namespace TBF.BenchControl.WaterMeters.WaterMeter { public partial class WaterMeterCfgCtrl : UserControl, IComponentCfgCtrl { static readonly ILog log = LogManager.GetLogger(typeof(WaterMeterCfgCtrl)); public bool ShowMore { get { return false; } } WaterMeterCfg config; public IComponentCfg Config { get { return config as IComponentCfg; } set { config = value as WaterMeterCfg; Redraw(); } } public WaterMeterCfgCtrl() { InitializeComponent(); } private void WaterMeterCfgCtrl_Load(object sender, EventArgs e) { nameLabel.Text = Strings.Name; Redraw(); } public void Closing() { } void Redraw() { if (config == null) return; /// Control was not loaded, settings were not changed classNameLabel.Text = config.Factory.ClassName; nameTextBox.Text = config.Name; } public void Unlock() { nameTextBox.Enabled = true; } public CfgUpdateFlags VerifyCfg(ref string message) { CfgUpdateFlags flags = CfgUpdateFlags.None; return flags; } public CfgUpdateFlags UpdateCfg() { CfgUpdateFlags flags = CfgUpdateFlags.RestartRqrd; if (config == null) return CfgUpdateFlags.Error; /// Control was not loaded, settings were not changed config.Name = nameTextBox.Text; return flags; } } }