winforms 列表框项在OwnerDrawFixed模式下不显示

8fq7wneg  于 2022-12-14  发布在  其他
关注(0)|答案(2)|浏览(317)

请,我真的很感激任何人可以帮助我解决以下问题。
我有一个Access数据库,希望将其加载到ListBox中。
我将ListBox DrawMode设置为**OwnerDrawFixed**,但是当我运行应用程序时,它显示的是(System.Data.DataRowView),而不是所有数据库记录。
我必须说,它在正常绘图模式下工作得很好。

下面是我的代码:

private void Form1_Load(object sender, EventArgs e)
    {
        ListBox1.DataSource = GetData();
        ListBox1.DisplayMember = "empName";
    }

DataTable dt;

private DataTable GetData()
    {
        dt = new DataTable();
        using (OleDbConnection myConn = new OleDbConnection(ConfigurationManager.ConnectionStrings["database"].ConnectionString))
        {
            using (OleDbCommand myQuery = new OleDbCommand("select empName from empTable", myConn))
            {
                myConn.Open();
                OleDbDataReader myReader = myQuery.ExecuteReader();
                dt.Load(myReader);
            }
        }
        return dt;
    }

private void ListBox1_DrawItem(object sender, DrawItemEventArgs e)
    {
        e.DrawBackground();

        bool isItemSelected = ((e.State & DrawItemState.Selected) == DrawItemState.Selected);
        int itemIndex = e.Index;
        if (itemIndex >= 0 && itemIndex < ListBox1.Items.Count)
        {
            Graphics g = e.Graphics;

            SolidBrush backgroundColorBrush = new SolidBrush((isItemSelected) ? Color.FromArgb(255, 64, 64, 64) : Color.FromArgb(0,64,64,64)); 
            g.FillRectangle(backgroundColorBrush, e.Bounds);

            // Set text color
            string itemText = ListBox1.Items[itemIndex].ToString();

            SolidBrush itemTextColorBrush = (isItemSelected) ? new SolidBrush(Color.White) : new SolidBrush(Color.LightGray); 
            g.DrawString(itemText, e.Font, itemTextColorBrush, ListBox1.GetItemRectangle(itemIndex).Location);

            // Clean up
            backgroundColorBrush.Dispose();
            itemTextColorBrush.Dispose();
        }
        e.DrawFocusRectangle();
    }

再次感谢您的评分

cidc1ykv

cidc1ykv1#

我建议对数据加载和用于填充ListBox的Items集合的方式以及DrawItems方法执行项目绘制的方式进行以下更改:
1.使用OleDbDataAdapter来填充DataTable,而不是OleDbDataReader。它使用起来很简单,并且会为您打开连接。
1.返回一个DataTable,然后使用第一个Column的名称作为ListBox**DisplayMember**,这样就不需要在这里硬编码提供要显示的信息的Field的名称。
1.移除DrawItem方法中不必要的部分,并使用GetItemText()方法撷取表示ListControl项目文字的字串。

protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);
    var dt = GetData();
    if (dt != null) {
        listBox1.DisplayMember = dt.Columns[0].ColumnName;
        listBox1.DataSource = dt;
    }
}

private DataTable GetData()
{
    using (var conn = new OleDbConnection(ConfigurationManager.ConnectionStrings["database"].ConnectionString))
    using (var cmd = new OleDbCommand("SELECT empName FROM empTable", conn)) {
        conn.Open();
        using (var reader = cmd.ExecuteReader()) {
            if (!reader.HasRows) return null;
            var dt = new DataTable();
            dt.Load(reader);
            return dt;
        }
    }
}

private void ListBox1_DrawItem(object sender, DrawItemEventArgs e)
{
    if (e.Index < 0) return;
    var lbx = sender as ListBox;
    bool isItemSelected = ((e.State & DrawItemState.Selected) == DrawItemState.Selected);
    using (var bgBrush = new SolidBrush(isItemSelected ? Color.FromArgb(64, 64, 64) : lbx.BackColor))
    using (var itemBrush = isItemSelected ? new SolidBrush(lbx.ForeColor) : new SolidBrush(Color.LightGray)) {
        string itemText = lbx.GetItemText(lbx.Items[e.Index]);
        e.Graphics.TextRenderingHint = TextRenderingHint.ClearTypeGridFit;
        e.Graphics.FillRectangle(bgBrush, e.Bounds);
        e.Graphics.DrawString(itemText, e.Font, itemBrush, e.Bounds);
    }
    e.DrawFocusRectangle();
}
1szpjjfi

1szpjjfi2#

由于ListBox数据绑定的,因此字符串是从DataSource中提取的。
因此,当您希望所有者绘制列表框时,需要执行以下操作之一:

string itemText = ((DataRowView)listBox1.Items[itemIndex]).Row["empName"].ToString();

或者按照Jimi的建议使用GetItemText函数。
请注意,这有点难以找到,因为它不是ListBox,而是ListControl函数。
当然,硬编码字段名称不是一个好主意,但这至少应该将您指向数据。

相关问题