Exemplo n.º 1
0
        private void observationCtrl_Click(object sender, EventArgs e)
        {
            ObservationForm frm = new ObservationForm();

            _currentObservationCtrl = sender as ObservationCtrl;
            frm.Show(_currentObservationCtrl, SharedObjects.MyChart);
        }
Exemplo n.º 2
0
        private void ObservationCtrl_Click(object sender, EventArgs e)
        {
            ObservationForm frm = new ObservationForm();
            ObservationCtrl oc  = sender as ObservationCtrl;

            if (oc != null)
            {
                frm.Show(oc, _row, _col);
            }
        }