1

我正在使用 VS 2015 在 C# 中编写客户端/服务器 WinForms 应用程序。

我有一个ListBox控件,它的DrawItem事件是所有者绘制的(是的,我将DrawMode属性设置为OwnerDrawFixed),每次收到新消息时都必须重新绘制它。

我在这个参考之后使用这个回调:

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

    int ItemMargin = 0;
    string last_u = "";

    foreach(Message m in ChatHistory[activeChatID])
    {
        // Don't write the same user name
        if(m.from.name != last_u)
        {
            last_u = m.from.name;

            e.Graphics.DrawString(last_u, ChatLobbyFont.Username.font, ChatLobbyFont.Username.color, e.Bounds.Left, e.Bounds.Top + ItemMargin);
                ItemMargin += ChatLobbyFont.Message.font.Height;
        }

        e.Graphics.DrawString("  " + m.message, ChatLobbyFont.Message.font, ChatLobbyFont.Message.color, e.Bounds.Left, e.Bounds.Top + ItemMargin);

        ItemMargin += ChatLobbyFont.Message.font.Height;
    }

    e.DrawFocusRectangle();
}

这是MeasureItem方法:

private void chatLobby_MeasureItem(object sender, MeasureItemEventArgs e)
{
    // No messages in the history
    if(ChatHistory[activeChatID][0] == null)
    {
        e.ItemHeight = 0;
        e.ItemWidth = 0;
    }

    string msg = ChatHistory[activeChatID][e.Index].message;

    SizeF msg_size = e.Graphics.MeasureString(msg, ChatLobbyFont.Message.font);

    e.ItemHeight = (int) msg_size.Height + 5;
    e.ItemWidth = (int) msg_size.Width;
 }

消息被接收并插入使用ListBox.Add(),它确实有效,由调试器确认。

但是ListBox 仅在我单击它时才会重绘(我认为它会触发焦点)。

我已经尝试过了.Update().Refresh().Invalidate() 没有运气

有没有办法DrawItem()从代码触发?

4

1 回答 1

1

经过一番研究,我找到了解决方案:在控件发生更改时调用DrawItem事件。

事实上,.Add()做的伎俩。我用这个改变了我的更新功能:

private void getMessages()
{
    // ... <--- connection logic here

    chatLobby.Items.Add(" "); // Alters the listbox
}
于 2015-08-20T12:53:54.727 回答