我完全是 C#/Visual Studio 的初学者,需要在这里朝着正确的方向努力。
我有一个 Main Window.xaml.cs 文件,其中有一个 TextBox 来接收名字,还有两个按钮,“Set”来更新一个名为 Student 的类,其中包含一个私有属性和一个“Clear " 按钮工作正常。
我无法弄清楚如何将我的字符串从文本框中获取到我的 Student 类中,并且需要在添加更多属性之前正确处理。
任何帮助将不胜感激。
主窗口代码如下
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void btnSet_Click(object sender, RoutedEventArgs e)
{
}
private void btnClear_Click(object sender, RoutedEventArgs e)
{
txtFirstName.Clear();
}
我的学生班级代码如下
namespace StudentRecordsSystem
{
public class Student
{
private string FirstName
{
get
{
throw new System.NotImplementedException();
}
set
{
// check that string is not empty
if (string.IsNullOrEmpty(value) == true)
throw new ArgumentOutOfRangeException("Please enter a first name");
}
}