private void ChangeProfile_Click(object sender, EventArgs e) { if (dgProfile.SelectedRows.Count == 1) { DataRow Row = ((DataRowView)dgProfile.SelectedRows[0].DataBoundItem).Row; MTrainingProfile Profile = new MTrainingProfile((string)Row["FullName"], (string)Row["ShortName"], (string)Row["Shiphr"]); AddProfile add = new AddProfile(Profile); add.Owner = this; add.Show(); } else { MessageBox.Show("Для изменения выделите только одну строку!"); } }
private void AddProfile_Click(object sender, EventArgs e) { AddProfile p = new AddProfile(); p.Show(); }