- Radar Graph 추가
- Graph 클릭 이벤트 추가
This commit is contained in:
@@ -132,5 +132,18 @@ namespace friction
|
||||
|
||||
m_CurSpring = strSpring;
|
||||
}
|
||||
|
||||
public void SelectRow(string strTable)
|
||||
{
|
||||
dgvAnalysis.ClearSelection();
|
||||
foreach (DataGridViewRow row in dgvAnalysis.Rows)
|
||||
{
|
||||
if ((string)row.Cells["chTable"].Value == strTable)
|
||||
{
|
||||
row.Selected = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user