This commit is contained in:
chi
2025-01-07 09:03:22 +09:00
parent 67e9641435
commit d406494ce4
8 changed files with 152 additions and 915 deletions

View File

@@ -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);
}
}
}