mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-02-20 07:44:40 -05:00
25 lines
549 B
C#
25 lines
549 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;
|
|
}
|
|
}
|