将 Winform 输出栏中的数据显示在 ListBox 控件中
时间: 2024-05-14 17:12:36 浏览: 157
C#的winform控件命名规范
以下是将 Winform 输出栏中的数据显示在 ListBox 控件中的示例代码:
在窗体中添加一个 ListBox 控件和一个 Button 控件,然后在 Button 的 Click 事件中添加以下代码:
```csharp
private void button1_Click(object sender, EventArgs e)
{
// 获取输出栏中的文本
string outputText = richTextBox1.Text;
// 将文本按行分割成字符串数组
string[] lines = outputText.Split(new string[] { "\r\n" }, StringSplitOptions.RemoveEmptyEntries);
// 将字符串数组添加到 ListBox 控件中
listBox1.Items.AddRange(lines);
}
```
在上述代码中,首先获取输出栏中的文本,然后使用 Split 方法将文本按行分割成字符串数组。最后,使用 ListBox 控件的 Items 属性和 AddRange 方法将字符串数组添加到 ListBox 控件中。注意,使用 RemoveEmptyEntries 参数可以忽略空行。
阅读全文