* UI: Visible Books \> Set 'Downloaded' status automatically. Visible books. Prompts before saving changes * CLI: Full library. No prompt
26 lines
669 B
C#
26 lines
669 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace LibationWinForms.Dialogs
|
|
{
|
|
public partial class LiberatedStatusBatchAutoDialog : Form
|
|
{
|
|
public bool SetDownloaded { get; private set; }
|
|
public bool SetNotDownloaded { get; private set; }
|
|
|
|
public LiberatedStatusBatchAutoDialog()
|
|
{
|
|
InitializeComponent();
|
|
this.SetLibationIcon();
|
|
}
|
|
|
|
private void okBtn_Click(object sender, EventArgs e)
|
|
{
|
|
SetDownloaded = this.setDownloadedCb.Checked;
|
|
SetNotDownloaded = this.setNotDownloadedCb.Checked;
|
|
|
|
this.DialogResult = DialogResult.OK;
|
|
}
|
|
}
|
|
}
|