在c# winform中怎样实现listbox的换行。我用"\r\n",没有起作用,望各位精英不吝赐教!谢谢!
2 回答
MMTTMM
TA贡献1869条经验 获得超4个赞
你试试看看是不是你想要的,直接给listbox添加内容,它就自动换行了啊!
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 窗口问题解决
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
listBox1.Items.Add("111");
listBox1.Items.Add("222");
listBox1.Items.Add("333");
listBox1.Items.Add("444");
listBox1.Items.Add("555");
listBox1.Items.Add("666");
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
}
}
- 2 回答
- 0 关注
- 2698 浏览
添加回答
举报
0/150
提交
取消