-1

我正在尝试在运行时评估属性的值。首先,我尝试使用一个人的 name 属性来完成此操作,但我不确定如何完成下面的 if 语句。我希望它重新打开我的 Form2,它将学生作为参数,它将显示他们的所有详细信息。任何帮助或建议将不胜感激。如果我做错了,请告诉我一些关于如何在运行时编辑属性数据的指导或建议。

public class Student :IPerson
{
    //Method that changes the original name
    public string ChangeName(string newForename)
    {
        _forename = newForename;
        return _forename;
    }
}

public partial class Edit_Details : Form
{      
    public Edit_Details(Student student)
    {
        InitializeComponent();
        nameLabel.Text = student.Forename;
        student.ChangeName(editNameTextBox.Text);
        //if(savebutton.Click) //how can I get this to replace the old name with the new one when the button is pressed??
    }
}
4

1 回答 1

0

 public Edit_Details(Student student)
    {
        InitializeComponent();
        nameLabel.Text = student.Forename;
        savebutton.Click+=(sender,e)=>
          {
             savebutton.Text=student.ChangeName(editNameTextBox.Text);
          };
    }
于 2013-04-04T22:56:56.297 回答