コード例 #1
0
ファイル: newMovie.cs プロジェクト: PlumpMath/MovMan
        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();
                });
            }
        }