コード例 #1
0
ファイル: MediaPathManager.cs プロジェクト: yanfoe/YANFOE.v2
        /// <summary>
        /// Handles the Click event of the BtnProcessMovies control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
        private void BtnProcessMovies_Click(object sender, EventArgs e)
        {
            var importMoviesUc = new ImportMoviesUc();

            this.InvokeImportMoviesClicked(new EventArgs());
            importMoviesUc.ShowDialog();
        }
コード例 #2
0
ファイル: MediaPathManager.cs プロジェクト: rsanch1/YANFOE.v2
 /// <summary>
 /// Handles the Click event of the BtnProcessMovies control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
 private void BtnProcessMovies_Click(object sender, EventArgs e)
 {
     var importMoviesUc = new ImportMoviesUc();
     this.InvokeImportMoviesClicked(new EventArgs());
     importMoviesUc.ShowDialog();
 }