问题是这样的:
ListBox显示如下鼓浪屿
香格里拉
倚天屠龙我想在特定的时候触发重绘时间 重绘ListBox
鼓浪屿
香格里拉
倚天屠龙关键的时怎么自己触发 listBox1_DrawItem 事件  
忘高手指教~ 

解决方案 »

  1.   

    timer吗?那就调用就可以了阿
    比如时间到了
    listBox1_DrawItem(listBox1,new DrawItemEventArgs(listBox1.CreateGraphics(),new Font(Font.Bold,FontStyle.Bold),null,listBox1.SelectedIndex,DrawItemState.Default)
        private void listBox1_DrawItem(object sender, DrawItemEventArgs e)
            {
                //
            }
      

  2.   

    应该是  Refresh() 吧 我去试一下
      

  3.   

    呵呵 我打错字了
    我想要问的就是 触发listBox1_DrawItem 事件 的方法
    ListBox中的 Refresh()就是它了结贴去~~~~