/// <summary> /// Handles the Click event of the SubGraph4 control. /// </summary> /// <param name="sender">The source of the event.</param> /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param> private void SubGraph4_Click(object sender, EventArgs e) { AIOutputView aiView = new AIOutputView(_dataId, _axisX, _axisY, _ordinalId, 4); aiView.Show(); }
/// <summary> /// Handles the Click event of the button1 control. /// </summary> /// <param name="sender">The source of the event.</param> /// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param> private void button1_Click(object sender, EventArgs e) { AIOutputView aiView = new AIOutputView(_dataId, _axisX, _axisY, _ordinalId, 1); aiView.Show(); }