让我试着澄清你的问题:
您有一堆文本框,每个文本框代表文本文件中的一行。每次用户单击文本框旁边的按钮时,您要替换相应的行。
替换文本文件中的一行非常容易。只需将所有行读入一个数组,替换该行并将所有内容写回文件:
private static void ReplaceLineInFile(string path, int lineNumber, string newLine)
{
if (File.Exists(path))
{
string[] lines = File.ReadAllLines(path);
lines[lineNumber] = newLine;
File.WriteAllLines(path, lines);
}
}
唯一剩下的就是知道应该更换哪条线。您可以为每个按钮添加一个处理程序(注意行号以 0 开头):
private void button1_Click(object sender, EventArgs e)
{
ReplaceLineInFile(fileName, 0, textBox1.Text);
}
private void button2_Click(object sender, EventArgs e)
{
ReplaceLineInFile(fileName, 1, textBox2.Text);
}
etc.
这不是很优雅,因为它复制了相同的代码。最好对所有按钮使用单个事件处理程序,然后找出它处理哪个文本框以及应该替换哪一行。我建议为文本框和按钮设置数组并在构造函数中构建它们:
private TextBox[] textBoxes;
private Button[] buttons;
public managementsystem()
{
InitializeComponent();
textBoxes = new TextBox[] { textBox1, textBox2, textBox3, textBox4, textBox5 };
buttons = new Button[] { button1, button2, button3, button4, button5 };
}
您的单个事件处理程序将是:
private void button_Click(object sender, EventArgs e)
{
Button button = sender as Button;
if (button != null)
{
int lineNumber = Array.IndexOf(buttons, button);
if (lineNumber >= 0)
{
ReplaceLineInFile(fileName, lineNumber, textBoxes[lineNumber].Text);
}
}
}
在某些时候,您可能想要保存所有值和/或创建文件。此外,您可能希望在加载表单时将现有值加载到文本框中:
private void Form1_Load(object sender, EventArgs e)
{
LoadFile();
}
private void LoadFile()
{
if (!File.Exists(fileName))
{
WriteAllLines();
return;
}
string[] lines = File.ReadAllLines(fileName);
if (lines.Length != textBoxes.Length)
{
// the number of lines in the file doesn't fit so create a new file
WriteAllLines();
return;
}
for (int i = 0; i < lines.Length; i++)
{
textBoxes[i].Text = lines[i];
}
}
private void WriteAllLines()
{
// this will create the file or overwrite an existing one
File.WriteAllLines(fileName, textBoxes.Select(tb => tb.Text));
}
请注意,当您添加新文本框时,这仍然有效。您唯一需要更改的是在构造函数中创建数组。但是,如果您更改文本框的数量,这将删除现有文件。为避免这种情况,您可以手动添加或删除新行。