public WaveshapeForm() { InitializeComponent(); comboBox1.SelectedIndex = 2; GetView.ListBox(MainFormContainers.ProfileID, checkedListBox2); GetView.ListBox(MainFormContainers.ukProfileID, checkedListBox1); }
public HistogramForm() { InitializeComponent(); GetView.ListBox(MainFormContainers.ProfileID, checkedListBox2); GetView.ListBox(MainFormContainers.ukProfileID, checkedListBox1); label5.Text = "共" + MainFormContainers.ukProfileID.Count.ToString() + "个"; label6.Text = "共" + MainFormContainers.ProfileID.Count.ToString() + "个"; }
public WavecharForm(DataTable dt, DataTable et) { Raw = dt.Copy(); Example = et.Copy(); ExampleAfter = et.Copy(); RawAfter = dt.Copy(); pRaw = new double[Raw.Rows.Count, 8]; pRawAfter = new double[Raw.Rows.Count, 4]; pExample = new double[Example.Rows.Count, 8]; pExampleAfter = new double[Example.Rows.Count, 4]; InitializeComponent(); GetView.ListBox(MainFormContainers.ProfileID, checkedListBox2); GetView.ListBox(MainFormContainers.ukProfileID, checkedListBox1); }