using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;namespace WindowsFormsApplication15
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }        private void listBox1_DrawItem(object sender, DrawItemEventArgs e)
        {
            MessageBox.Show("hello");
        }
    }
}
运行后没有显示信息框,不知道是哪里写错了?ListBox