コード例 #1
0
        private void dgvTiss_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            if (e.RowIndex < 0)
            {
                return;
            }
            List <MED_TISS_SCORING_RESULT_DETAIL> detailTable;

            detailTable = DataOperator.GetTissScoringResultDt(_patientID, _visitID, _deptID,
                                                              (DateTime)dgvTiss.Rows[e.RowIndex].Cells[0].Value);
            pushValue(detailTable);
        }