示例#1
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();
 }
示例#2
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);
 }
示例#3
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);
 }
示例#4
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();
 }