C#从列表框中选择的项目,每个项目的文本框中都有自己的值

时间:2018-10-23 15:05:35

标签: c# textbox listbox items

我需要一些帮助,

如果我在列表框中单击一个项目,则希望在文本框中输入值,然后单击下一个项目而不会丢失这些值。但是,此值应仅与此项目一起显示。这样我就可以在同一文本框中为下一项输入另一个值。不会失去之前的价值。

我想稍后将所有值写入一个文本文件。

这对我来说是全新的,我不知道该怎么做。

对不起,我的英语不好。

public void GameDirectoryBrowseButton_Click(object sender, EventArgs e)
{
    FolderBrowserDialog Gamepath = new FolderBrowserDialog();

    if (Gamepath.ShowDialog() == DialogResult.OK)
        GameDirectoryTextBox.Text = Gamepath.SelectedPath;


    string[] Files = Directory.GetFiles(Gamepath.SelectedPath, "*.(file.extension)", SearchOption.AllDirectories);

    for (int i = 0; i < Files.Length; i++)
        listBox1.Items.Add(Path.GetFileName(Files[i]));
    }
}

0 个答案:

没有答案