コード例 #1
0
ファイル: main.cs プロジェクト: princehaku/WEGmanager
 private void 详情ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     //详情载入
     //string type = userDataGridView.CurrentCellAddress.X();
     string userid = "wegDbfile-" + userDataGridView[1, userDataGridView.CurrentCell.RowIndex].Value.ToString();
     string path=Application.StartupPath + "/UserData/" + userid + ".rdb";
     detail de = new detail(path,userDataGridView[1, userDataGridView.CurrentCell.RowIndex].Value.ToString());
     de.Show();
 }