using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using Config.Entities; using TBF.BenchControl; namespace DeviceTest { public partial class DeviceTestDlg : Form { IList compClasses; public DeviceTestDlg() { InitializeComponent(); compClasses = new List(); foreach (var componentFactory in TbfComponents.Factories) { compClasses.Add(componentFactory.ClassName); } } private void DeviceTestDlg_Load(object sender, EventArgs e) { foreach (var clName in compClasses) classNameComboBox.Items.Add(clName); } private void configureButton_Click(object sender, EventArgs e) { } private void startButton_Click(object sender, EventArgs e) { } private void stopButton_Click(object sender, EventArgs e) { } } }