BatchGuy.App.CreateEAC3ToBatchForm.HandlesdgvBluRaySummaryCellClick C# (CSharp) Method

HandlesdgvBluRaySummaryCellClick() private method

private HandlesdgvBluRaySummaryCellClick ( System.Windows.Forms.DataGridViewCellEventArgs e ) : void
e System.Windows.Forms.DataGridViewCellEventArgs
return void
        private void HandlesdgvBluRaySummaryCellClick(DataGridViewCellEventArgs e)
        {
            dgvBluRaySummary.Rows[e.RowIndex].Selected = true;
            var id = dgvBluRaySummary.Rows[e.RowIndex].Cells[1].Value;
            BluRaySummaryInfo summaryInfo = _currentBluRayDiscInfo.BluRaySummaryInfoList.SingleOrDefault(s => s.Eac3ToId == id.ToString());
            _currentMovieEAC3ToRemuxFileNameTemplate = summaryInfo.RemuxFileNameForMovieTemplate;
            this.SetRemuxControlsForMovie();
        }
CreateEAC3ToBatchForm