我正在制作一本联系簿,试图学习课程,并开设新表格。
我正在尝试从文本文档中获取项目以填充列表框,仅使用每行第一个分隔符之前的字符串。当我运行脚本时,会出现Windows窗体,但列表框是空白,但其中似乎有五个可选择的项目。点击它们没有效果。
以下是表单的代码:
namespace AddressBook
{
public partial class formMain : Form
{
//Pub vars
string selectedName = "";
List<string> values = new List<string>();
public formMain()
{
InitializeComponent();
}
public void formMain_Load (object sender, EventArgs e)
{
//load values from file
try
{
StreamReader inputFile;
inputFile = File.OpenText("EmpRoster.txt");
string lines;
while (!inputfile.EndOfSteam)
{
lines = inputFile.ReadLine();
string[] tokens = lines.Split(',');
PersonEntry person = new PersonEntry(tokens[0], tokens[1], tokens[2]);
values.Add(person.Name + ";" + person.Email + ";" + person.Phone);
listOuput.Items.Add(person.Name);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
//Selected index change
private void listOutput_SelectedIndexChanged(object sender, EventArgs e)
{
selectedName = listOutput.SelectedItem.ToString();
Form newForm = new Form();
Label label1 = new Label();
label1.Size = new Size(270, 75);
label1.Location = new Point(10, 10);
foreach (string str in values)
{
if (str.Containes(selectedName))
{
string[] tokens = str.Split(';');
label1.text += "Name: " + tokens[0] + "\n" + "Email: " + tokens[1] + "\n" + "Phone Number: " + tokens[2] + "\n";
}
}
newForm.Controls.Add(label1);
newForm.ShowDialog();
}
}
这是我的课程代码:
namespace AddressBook
{
public class PersonEntry
{
private string _name;
private string _email;
private string _phone;
public PersonEntry(string name, string email, string phone)
{
_name = "";
_email = "";
_phone = "";
}
public string Name
{
get { return _name; }
set { _name = value; }
}
public string Email
{
get { return _email; }
set { _email = value; }
{
public string Phone
{
get { return _phone; }
set { _phone = value; }
}
}
}
我似乎无法在跑步时看到这个;但是,我确实尝试添加一个按钮并在点击时填充列表框,这似乎有效。
我很欣赏这一点。
答案 0 :(得分:5)
问题在于如何实例化你的课程。如果你看一下构造函数:
public PersonEntry(string name, string email, string phone)
{
_name = "";
_email = "";
_phone = "";
}
您没有存储收到的值,而是完全忽略它们。只需简化您的课程:
public string Name { get; set; }
public string Email { get; set; }
public string Phone { get; set; }
public PersonEntry(string name, string email, string phone)
{
Name = name;
Email = email;
Phone = phone;
}
您不需要为自动生成支持字段。
答案 1 :(得分:2)
你的PersonEntry构造函数是个问题。您正在分配空字符串,您应该(可能)指定所提供的参数。