DrawItemEventArgs' “索引” 财产有时会变成负值

发布于 2024-07-16 05:42:26 字数 306 浏览 10 评论 0原文

我有一个所有者绘制的列表框控件。

问题是有时传递给我的 DrawItem 事件处理程序的 DrawItemEventArgs 参数的 Index 属性为“-1”。 这是我的不道德修复:

private void lstBox_DrawItem(object sender, DrawItemEventArgs e)
{
    if (e.Index >= 0)
    {
        handler implementation
    }
}

我想知道通常是什么导致将负索引传递给处理程序。

I have an owner-drawn listbox control.

The problem is that sometimes the DrawItemEventArgs argument passed to my DrawItem event-handler has an Index property of "-1". This is my unethical fix:

private void lstBox_DrawItem(object sender, DrawItemEventArgs e)
{
    if (e.Index >= 0)
    {
        handler implementation
    }
}

I'd like to know what normally causes a negative index to be passed to the handler.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

永言不败 2024-07-23 05:42:26

这可能是当列表框为空但接收焦点时 - 例如,如果列表在关闭时被清除。

This may be when the listbox is empty, but receives the focus - e.g. if the list is cleared on closing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文