..
This commit is contained in:
@@ -775,14 +775,7 @@ namespace FPJ0000.JobReport_
|
||||
|
||||
private void commonDataGridView_CellContentDoubleClick(object sender, DataGridViewCellEventArgs e)
|
||||
{
|
||||
//데이터그리드뷰 항목 더블클릭
|
||||
if (this.FullName.isEmpty()) return;
|
||||
|
||||
var drv = bs.Current as DataRowView;
|
||||
if (drv == null) return;
|
||||
var dr = drv.Row as dsJobReport.CommonRow;
|
||||
if (dr == null) return;
|
||||
Feedback(dr);
|
||||
|
||||
}
|
||||
|
||||
void Feedback(dsJobReport.CommonRow dr)
|
||||
@@ -890,5 +883,17 @@ namespace FPJ0000.JobReport_
|
||||
{
|
||||
this.treeView1.CollapseAll();
|
||||
}
|
||||
|
||||
private void commonDataGridView_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
|
||||
{
|
||||
//데이터그리드뷰 항목 더블클릭
|
||||
if (this.FullName.isEmpty()) return;
|
||||
|
||||
var drv = bs.Current as DataRowView;
|
||||
if (drv == null) return;
|
||||
var dr = drv.Row as dsJobReport.CommonRow;
|
||||
if (dr == null) return;
|
||||
Feedback(dr);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user