public override void Configure() { //Open our advanced setting dialog SoundGraphDisplay.LogDebug("SoundGraphImonLcd.Configure() called"); Form form = new SoundGraphImonSettingsForm(); form.ShowDialog(); form.Dispose(); SoundGraphDisplay.LogDebug("SoundGraphImonLcd.Configure() completed"); }
public override void Configure() { //Our display is initialized, now open the advanced setting dialog SoundGraphDisplay.LogDebug("SoundGraphImonVfd.Configure() called"); SoundGraphImonSettingsForm form = new SoundGraphImonSettingsForm(); //Hide our LCD tab since we configure a VFD display //TODO: make this a method of SoundGraphImonSettingsForm form.tabControl.TabPages.Remove(form.tabLcd); form.ShowDialog(); form.Dispose(); SoundGraphDisplay.LogDebug("(IDisplay) SoundGraphImonVfd.Configure() completed"); }