日期:2014-05-17 浏览次数:20977 次
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");
}
}
}