Ejemplo n.º 1
0
 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("Для изменения выделите только одну строку!");
     }
 }
Ejemplo n.º 2
0
        private void AddProfile_Click(object sender, EventArgs e)
        {
            AddProfile p = new AddProfile();

            p.Show();
        }