示例#1
0
        void autoFillThread()
        {
            string query = titleT.Text;

            if (query != "")
            {
                imdb = null;
                imdb = new Imdb();
                imdb.Search(query);

                this.Invoke((MethodInvoker) delegate
                {
                    autoFillThreadValueUpdate();
                });
            }
        }
示例#2
0
文件: newMovie.cs 项目: ytn3rd/MovMan
        void autoFillThread()
        {
            string query = titleT.Text;
            if (query != "")
            {
                imdb = null;
                imdb = new Imdb();
                imdb.Search(query);

                this.Invoke((MethodInvoker)delegate
                {
                    autoFillThreadValueUpdate();
                });
            }
        }