我的代码有问题。我的代码必须从文本文件中读取值,它确实如此。但是当我将文本文件的值放在我的列表框中时,结果如下:
所以命令或值都在一行中。我希望命令像这样运行,我已经更改了图片,因此您可以看到:
所以你看?我想要彼此下的命令。这是我读取文本文件的代码:
private void CommandFileSelectButton_Click(object sender, EventArgs e)
{
Stream mystream;
OpenFileDialog commandFileDialog = new OpenFileDialog();
if (commandFileDialog.ShowDialog() == DialogResult.OK)
{
if ((mystream = commandFileDialog.OpenFile())!= null)
{
string fileName = commandFileDialog.FileName;
CommandListTextBox.Text = fileName;
string fileText = File.ReadAllText(fileName);
_commandList.Add(fileText);
CommandListListBox.DataSource = _commandList;
}
}
}
_commandList
是我的同事制作的本地功能。
TextFile
这是看起来如何:
RUN
RUNW
STOP
RUN
RUN
STOP
在此先感谢您的帮助。