Exemplo n.º 1
0
 /// <summary>
 /// Handles the ItemClick event of the btnSeriesSavePoster control.
 /// </summary>
 /// <param name="sender">
 /// The source of the event.
 /// </param>
 /// <param name="e">
 /// The <see cref="DevExpress.XtraBars.ItemClickEventArgs"/> instance containing the event data.
 /// </param>
 private void btnSeriesSavePoster_ItemClick(object sender, ItemClickEventArgs e)
 {
     OutFactory.SaveAllSelectedSeriesDetails(SeriesIOType.Poster);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Handles the Click event of the btnSaveSelectedEpisode 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 btnSaveSelectedEpisode_Click(object sender, EventArgs e)
 {
     OutFactory.SaveAllSelectedEpisodeDetails();
 }
Exemplo n.º 3
0
 /// <summary>
 /// Handles the Click event of the btnSaveSelectedSeries 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 btnSaveSelectedSeries_Click(object sender, EventArgs e)
 {
     OutFactory.SaveAllSelectedSeriesDetails();
 }
Exemplo n.º 4
0
 /// <summary>
 /// Handles the ItemClick event of the btnSaveSeasonPoster control.
 /// </summary>
 /// <param name="sender">
 /// The source of the event.
 /// </param>
 /// <param name="e">
 /// The <see cref="DevExpress.XtraBars.ItemClickEventArgs"/> instance containing the event data.
 /// </param>
 private void btnSaveSeasonPoster_ItemClick(object sender, ItemClickEventArgs e)
 {
     OutFactory.SaveAllSelectedSeasonDetails(SeasonIOType.Poster);
 }
Exemplo n.º 5
0
 /// <summary>
 /// Handles the ItemClick event of the btnEpisodeSaveScreenshot control.
 /// </summary>
 /// <param name="sender">
 /// The source of the event.
 /// </param>
 /// <param name="e">
 /// The <see cref="DevExpress.XtraBars.ItemClickEventArgs"/> instance containing the event data.
 /// </param>
 private void btnEpisodeSaveScreenshot_ItemClick(object sender, ItemClickEventArgs e)
 {
     OutFactory.SaveAllSelectedEpisodeDetails(EpisodeIOType.Screenshot);
 }
Exemplo n.º 6
0
 /// <summary>
 /// Handles the ItemClick event of the btnEpisodeSaveNFo control.
 /// </summary>
 /// <param name="sender">
 /// The source of the event.
 /// </param>
 /// <param name="e">
 /// The <see cref="DevExpress.XtraBars.ItemClickEventArgs"/> instance containing the event data.
 /// </param>
 private void btnEpisodeSaveNFo_ItemClick(object sender, ItemClickEventArgs e)
 {
     OutFactory.SaveAllSelectedEpisodeDetails(EpisodeIOType.Nfo);
 }
Exemplo n.º 7
0
 /// <summary>
 /// Handles the ItemClick event of the btnAllSaveSeason control.
 /// </summary>
 /// <param name="sender">
 /// The source of the event.
 /// </param>
 /// <param name="e">
 /// The <see cref="DevExpress.XtraBars.ItemClickEventArgs"/> instance containing the event data.
 /// </param>
 private void btnAllSaveSeason_ItemClick(object sender, ItemClickEventArgs e)
 {
     OutFactory.SaveAllSelectedSeasonDetails();
 }
Exemplo n.º 8
0
 /// <summary>
 /// Handles the ItemClick event of the btnAllSaveEpisode control.
 /// </summary>
 /// <param name="sender">
 /// The source of the event.
 /// </param>
 /// <param name="e">
 /// The <see cref="DevExpress.XtraBars.ItemClickEventArgs"/> instance containing the event data.
 /// </param>
 private void btnAllSaveEpisode_ItemClick(object sender, ItemClickEventArgs e)
 {
     OutFactory.SaveAllSelectedEpisodeDetails();
 }