예제 #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();
                });
            }
        }