示例#1
0
        private void frmDebug_Load(object sender, EventArgs e)
        {
            Timer t = new Timer();

            t.Tick += delegate(object lol, EventArgs dongs) {
                string str = ic.List(ImageCollection.imType.Any);
                if (str != "")
                {
                    label1.Text = str;
                }
            }; t.Interval = 10; t.Start();
        }