0

我有一个连续 15 个文本框的 WinForm,每个文本框旁边都有一个保存和显示按钮。用户可以在这些框中写入文本,当他们打开表单时,他们可以单击显示并查看他们编写的文本,然后保存并关闭应用程序,它仍然可以显示。

对于我认为可以在每个文本框和按钮上单独使用的代码

namespace UniversityProject
{

public partial class managementsystem : Form
{
    private const string fileName = @"C:\txtBoxdata.txt";

    public managementsystem()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        textBox3.Text = File.ReadAllText(fileName);
    }

    private void button2_Click(object sender, EventArgs e)
    {
        File.WriteAllText(fileName, textBox3.Text);
    }

我认为它可以通过更改文本框数字来工作,但我认为它可能与阅读所有内容有关。由于所有文本框都显示相同的数据,这是不正确的。

4

3 回答 3

1

让我试着澄清你的问题:

您有一堆文本框,每个文本框代表文本文件中的一行。每次用户单击文本框旁边的按钮时,您要替换相应的行。

替换文本文件中的一行非常容易。只需将所有行读入一个数组,替换该行并将所有内容写回文件:

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));
}

请注意,当您添加新文本框时,这仍然有效。您唯一需要更改的是在构造函数中创建数组。但是,如果您更改文本框的数量,这将删除现有文件。为避免这种情况,您可以手动添加或删除新行。

于 2013-03-01T19:48:00.780 回答
0

基本问题是您试图将不同的文本框值保存到一个 txt 文件中。更改 txt 文件名和文本框名称,你会很高兴.. :)

于 2013-03-01T15:50:52.263 回答
0

掌握StreamWriterStreamReader。在 OnClick 事件中使用流编写器或读取器打开一个新流。然后使用类似的东西

using(StreamWriter sw = new StreamWriter("C:\\Path\\to\\file.txt")){
    sw.WriteLine("TEXTBOX1: " + textbox1.text);
    sw.Close();
} 

对所有文本框执行此操作。并最终使用 StreamReader 从您的文件中读取

using(StreamReader sr = new StreamReader("C:\\Path\\to\\file.txt")){
    string s  = sr.ReadToEnd();
    //find value for your textbox;
    textbox1.Text = s;
    sw.Close();
} 

试一试!

于 2013-03-01T15:57:48.973 回答